| ... | @@ -14,6 +14,36 @@ tasks: | ... | @@ -14,6 +14,36 @@ tasks: |
| 14 | - test: | | 14 | - test: | |
| 15 | cd zig/build | 15 | cd zig/build |
| 16 | bin/zig test ../test/behavior.zig | 16 | bin/zig test ../test/behavior.zig |
| | 17 | bin/zig test ../std/special/compiler_rt/index.zig |
| | 18 | bin/zig test ../std/index.zig |
| | 19 | |
| | 20 | bin/zig test ../test/behavior.zig --library c |
| | 21 | bin/zig test ../std/special/compiler_rt/index.zig --library c |
| | 22 | bin/zig test ../std/index.zig --library c |
| | 23 | |
| | 24 | bin/zig test ../test/behavior.zig --release-fast |
| | 25 | bin/zig test ../std/special/compiler_rt/index.zig --release-fast |
| | 26 | bin/zig test ../std/index.zig --release-fast |
| | 27 | |
| | 28 | bin/zig test ../test/behavior.zig --release-fast --library c |
| | 29 | bin/zig test ../std/special/compiler_rt/index.zig --release-fast --library c |
| | 30 | bin/zig test ../std/index.zig --release-fast --library c |
| | 31 | |
| | 32 | bin/zig test ../test/behavior.zig --release-small --library c |
| | 33 | bin/zig test ../std/special/compiler_rt/index.zig --release-small --library c |
| | 34 | bin/zig test ../std/index.zig --release-small --library c |
| | 35 | |
| | 36 | bin/zig test ../test/behavior.zig --release-small |
| | 37 | bin/zig test ../std/special/compiler_rt/index.zig --release-small |
| | 38 | bin/zig test ../std/index.zig --release-small |
| | 39 | |
| | 40 | bin/zig test ../test/behavior.zig --release-safe |
| | 41 | bin/zig test ../std/special/compiler_rt/index.zig --release-safe |
| | 42 | bin/zig test ../std/index.zig --release-safe |
| | 43 | |
| | 44 | bin/zig test ../test/behavior.zig --release-safe --library c |
| | 45 | bin/zig test ../std/special/compiler_rt/index.zig --release-safe --library c |
| | 46 | bin/zig test ../std/index.zig --release-safe --library c |
| 17 | # TODO enable all tests | 47 | # TODO enable all tests |
| 18 | #bin/zig build --build-file ../build.zig test | 48 | #bin/zig build --build-file ../build.zig test |
| 19 | # TODO integrate with the download page updater and make a | 49 | # TODO integrate with the download page updater and make a |