Compare commits

...

2 Commits

Author SHA1 Message Date
57482921b7 1
All checks were successful
/ build-images (pull_request) Successful in 8s
/ run-tests (pull_request) Successful in 5s
/ build-images (push) Successful in 8s
/ run-tests (push) Successful in 5s
2026-03-18 19:57:35 +02:00
c68f37f00f 1
All checks were successful
/ build-images (push) Successful in 5s
/ run-tests (push) Successful in 6s
2026-03-18 19:56:54 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
on: [push, workflow_dispatch] on: [push, pull_request, workflow_dispatch]
jobs: jobs:
build-images: build-images:

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
for OPT in s 0 1 2 3; do for OPT in s 0; do
echo -- "-O$OPT" && gcc f.c -O$OPT -o f && ./f echo -- "-O$OPT" && gcc f.c -O$OPT -o f && ./f
done done