Skip to content

Commit 4ff23b6

Browse files
committed
tests: remove freebsd from the test matrix
- Manually add all the native tests to CI manifest.
1 parent c29cae7 commit 4ff23b6

File tree

2 files changed

+30
-5
lines changed

2 files changed

+30
-5
lines changed

.builds/freebsd.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,36 @@ tasks:
1414
- test: |
1515
cd zig/build
1616
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
1747
# TODO enable all tests
1848
#bin/zig build --build-file ../build.zig test
1949
# TODO integrate with the download page updater and make a

test/tests.zig

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,6 @@ const test_targets = []TestTarget{
3838
.arch = builtin.Arch.x86_64,
3939
.environ = builtin.Environ.unknown,
4040
},
41-
TestTarget{
42-
.os = builtin.Os.freebsd,
43-
.arch = builtin.Arch.x86_64,
44-
.environ = builtin.Environ.unknown,
45-
},
4641
TestTarget{
4742
.os = builtin.Os.windows,
4843
.arch = builtin.Arch.x86_64,

0 commit comments

Comments
 (0)