8 Commits

Author SHA1 Message Date
hasslesstech 61793f5ffb 1
/ build-images (push) Successful in 11s
/ run-tests (push) Successful in 6s
2026-03-18 18:21:40 +02:00
hasslesstech a3f1cafc4e 1
/ build-images (push) Successful in 6s
/ run-tests (push) Failing after 2s
2026-03-18 18:20:48 +02:00
hasslesstech a869d718ef 1
/ run-tests (push) Has been cancelled
/ build-images (push) Has been cancelled
2026-03-18 18:19:17 +02:00
hasslesstech 00701b9293 1
/ build-images (push) Successful in 8s
/ run-tests (push) Successful in 8s
2026-03-18 18:17:27 +02:00
hasslesstech ea4bdaa3b7 1
/ build-images (push) Failing after -1s
/ run-tests (push) Has been skipped
2026-03-18 18:15:31 +02:00
hasslesstech 0363743e10 1 2026-03-18 18:13:37 +02:00
hasslesstech 039896ae2b fix new issue
/ build-images (push) Successful in 8s
/ run-tests (push) Successful in 8s
2026-03-18 18:09:46 +02:00
hasslesstech 6f995b74a4 new issue
/ build-images (push) Successful in 5s
/ run-tests (push) Failing after 5s
2026-03-18 18:07:50 +02:00
2 changed files with 7 additions and 3 deletions
+6 -3
View File
@@ -1,15 +1,18 @@
on: [push] on: [push, workflow_dispatch]
jobs: jobs:
build-images: build-images:
runs-on: host-arch-x86_64 runs-on: host-arch-x86_64
steps: steps:
- name: Debug print
run: echo '${{ toJson(gitea) }}'
- name: Clone repository - name: Clone repository
run: git clone --revision ${{ gitea.sha }} --depth 1 ${{ gitea.server_url }}/${{ gitea.repository }} run: git clone --revision ${{ gitea.sha }} --depth 1 ${{ gitea.server_url }}/${{ gitea.repository }}
- name: Build GCC container - name: Build GCC container
working-directory: test5 working-directory: test5
run: docker build . -f Dockerfile -t local/alpine-gcc:latest run: docker build . -f Dockerfile -t local/alpine-gcc-${{gitea.ref_name}}:latest
run-tests: run-tests:
runs-on: host-arch-x86_64 runs-on: host-arch-x86_64
@@ -22,4 +25,4 @@ jobs:
- run: ls -lh test5 - run: ls -lh test5
- name: Run tests - name: Run tests
run: docker run -it --rm -v ./test5:/app local/alpine-gcc:latest run: docker run -it --rm -v ./test5:/app local/alpine-gcc-${{gitea.ref_name}}:latest
+1
View File
@@ -32,6 +32,7 @@ int f(void)
free(malloc(64)); free(malloc(64));
free(malloc(96)); free(malloc(96));
free(malloc(128)); free(malloc(128));
free(malloc(256));
return 1; return 1;
} }