feat: support macos in ci

This commit is contained in:
2025-01-14 16:17:55 +02:00
parent 0bf0e5bac5
commit 50d06cf649
3 changed files with 90 additions and 44 deletions

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env -S v -n -w -gc none -no-retry-compilation -cc tcc -d use_openssl -enable-globals run
#!/usr/bin/env -S v -cc gcc -n -w -gc none -no-retry-compilation -d use_openssl -enable-globals run
import os
import flag
@@ -119,7 +119,7 @@ fn dotest(path string, base_dir string, mut cache TestCache) ! {
return
}
cmd := 'v -stats -enable-globals -n -w -gc none -no-retry-compilation -cc tcc test ${norm_path}'
cmd := 'v -stats -enable-globals -n -w -gc none -no-retry-compilation test ${norm_path}'
println(cmd)
result := os.execute(cmd)
eprintln(result)