1 Commits

Author SHA1 Message Date
3362069390 1
All checks were successful
/ build-images (push) Successful in 8s
/ run-tests (push) Successful in 7s
2026-03-18 19:52:29 +02:00
2 changed files with 2 additions and 2 deletions

View File

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

View File

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