23 lines
530 B
YAML
23 lines
530 B
YAML
steps:
|
|
build:
|
|
image: git.holgersson.xyz/nfr/arm-none-eabi:debian11-20240121
|
|
pull: true
|
|
commands:
|
|
arm-none-eabi-gcc --specs=nosys.specs main.c -o main-arm-none-eabi-gcc.elf
|
|
|
|
# do not test arm32 bins on amd64 ;)
|
|
#test: {}
|
|
|
|
publish:
|
|
image: woodpeckerci/plugin-gitea-release
|
|
settings:
|
|
base_url: https://git.holgersson.xyz
|
|
files:
|
|
- "main*"
|
|
checksum:
|
|
- sha512
|
|
- crc32
|
|
api_key:
|
|
from_secret: GITEA_ACCESS_TOKEN
|
|
target: main
|