Merge pull request 'switch-to-arm-cross-gcc' (#1) from switch-to-arm-cross-gcc into main
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Reviewed-on: #1
This commit is contained in:
commit
610ce0cbe0
@ -1,13 +1,22 @@
|
|||||||
steps:
|
steps:
|
||||||
build:
|
build:
|
||||||
image: git.holgersson.xyz/nfr/alpine-with-gcc:3.19-20240121
|
image: git.holgersson.xyz/nfr/arm-none-eabi:debian11-20240121
|
||||||
pull: true
|
pull: true
|
||||||
commands:
|
commands:
|
||||||
gcc main.c -o main
|
arm-none-eabi-gcc --specs=nosys.specs main.c -o main-arm-none-eabi-gcc.elf
|
||||||
|
|
||||||
test:
|
# do not test arm32 bins on amd64 ;)
|
||||||
image: git.holgersson.xyz/nfr/alpine-with-gcc:latest
|
#test: {}
|
||||||
pull: true
|
|
||||||
commands:
|
|
||||||
./main
|
|
||||||
|
|
||||||
|
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
|
||||||
|
10
Dockerfile
10
Dockerfile
@ -1,5 +1,11 @@
|
|||||||
FROM alpine:3.19 as setup
|
# Debian bookworm is debian12.
|
||||||
RUN apk upgrade && apk add gcc musl-dev
|
FROM debian:bookworm as setup
|
||||||
|
|
||||||
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y gcc-arm-none-eabi cmake
|
||||||
|
RUN mkdir /build
|
||||||
|
|
||||||
FROM scratch
|
FROM scratch
|
||||||
COPY --from=setup / /
|
COPY --from=setup / /
|
||||||
|
WORKDIR /build
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
= arm gcc playground :-)
|
||||||
|
:toc:
|
||||||
|
|
||||||
|
// vim:syntax=asciidoc:fileencoding=utf-8:ts=4:expandtab:linebreak:wrap
|
Loading…
Reference in New Issue
Block a user