Merge pull request #7327 from kalsprite/abi_conformance

ABI Conformance Harness + Fixes
This commit is contained in:
gingerBill
2026-08-17 16:28:01 +02:00
committed by GitHub
15 changed files with 2359 additions and 144 deletions

View File

@@ -40,6 +40,8 @@ jobs:
./odin test tests/core/speed.odin -file -vet -vet-tabs -strict-style -vet-style -warnings-as-errors -disallow-do -o:speed -define:ODIN_TEST_FANCY=false -define:ODIN_TEST_FAIL_ON_BAD_MEMORY=true -microarch:native
./odin test tests/vendor -all-packages -vet -vet-tabs -strict-style -vet-style -warnings-as-errors -disallow-do -define:ODIN_TEST_FANCY=false -define:ODIN_TEST_FAIL_ON_BAD_MEMORY=true -microarch:native
(cd tests/issues; ./run.sh)
(cd tests/abi; ./run.sh)
(cd tests/abi; ABI_CFLAGS=-O2 ./run.sh "" "" -o:speed)
./odin check tests/benchmark -vet -strict-style -no-entry-point
build_freebsd:
@@ -73,6 +75,8 @@ jobs:
./odin test tests/core/speed.odin -file -all-packages -vet -vet-tabs -strict-style -vet-style -warnings-as-errors -disallow-do -o:speed -define:ODIN_TEST_FANCY=false -define:ODIN_TEST_FAIL_ON_BAD_MEMORY=true
./odin test tests/vendor -all-packages -vet -vet-tabs -strict-style -vet-style -warnings-as-errors -disallow-do -define:ODIN_TEST_FANCY=false -define:ODIN_TEST_FAIL_ON_BAD_MEMORY=true
(cd tests/issues; ./run.sh)
(cd tests/abi; ./run.sh)
(cd tests/abi; ABI_CFLAGS=-O2 ./run.sh "" "" -o:speed)
./odin check tests/benchmark -vet -strict-style -no-entry-point
ci:
strategy:
@@ -171,6 +175,12 @@ jobs:
cd tests/issues
./run.sh
- name: ABI comparator
run: |
cd tests/abi
./run.sh
ABI_CFLAGS=-O2 ./run.sh "" "" -o:speed
- name: Run demo on WASI WASM32
run: |
./odin build examples/demo -target:wasi_wasm32 -vet -vet-tabs -strict-style -vet-style -warnings-as-errors -disallow-do -out:demo
@@ -284,6 +294,10 @@ jobs:
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
cd tests/issues
call run.bat
cd ../abi
call run.bat
set ABI_CFLAGS=-O2
call run.bat -o:speed
- name: Check benchmarks
shell: cmd
run: |
@@ -359,3 +373,9 @@ jobs:
- name: Internals tests
run: ./odin test tests/internal -all-packages -vet -vet-tabs -strict-style -vet-style -warnings-as-errors -disallow-do -define:ODIN_TEST_FANCY=false -define:ODIN_TEST_FAIL_ON_BAD_MEMORY=true -target:linux_riscv64 -extra-linker-flags:"-fuse-ld=/usr/bin/riscv64-linux-gnu-gcc-12 -static -Wl,-static" -no-rpath
- name: ABI comparator
run: |
cd tests/abi
./run.sh linux_riscv64 riscv64-linux-gnu "-extra-linker-flags:-fuse-ld=/usr/bin/riscv64-linux-gnu-gcc-12 -static -Wl,-static" -no-rpath
ABI_CFLAGS=-O2 ./run.sh linux_riscv64 riscv64-linux-gnu "-extra-linker-flags:-fuse-ld=/usr/bin/riscv64-linux-gnu-gcc-12 -static -Wl,-static" -no-rpath -o:speed