enable link-test on linux CI

This commit is contained in:
Luuk de Gram 2022-07-10 18:28:14 +02:00
parent 4776065036
commit 34b786fb0f
No known key found for this signature in database
GPG Key ID: A8CFE58E4DC7D664
2 changed files with 51 additions and 52 deletions

View File

@ -67,6 +67,7 @@ $STAGE1_ZIG build test-cli -fqemu -fwasmtime
$STAGE1_ZIG build test-run-translated-c -fqemu -fwasmtime
$STAGE1_ZIG build docs -fqemu -fwasmtime
$STAGE1_ZIG build test-cases -fqemu -fwasmtime
$STAGE1_ZIG build test-link -fqemu -fwasmtime
# Produce the experimental std lib documentation.
mkdir -p "$RELEASE_STAGING/docs/std"

View File

@ -47,7 +47,6 @@ pub fn addCases(cases: *tests.StandaloneContext) void {
.requires_stage2 = true,
});
if (builtin.os.tag == .macos) {
cases.addBuildFile("test/link/macho/entry/build.zig", .{
.build_modes = true,
});
@ -111,5 +110,4 @@ pub fn addCases(cases: *tests.StandaloneContext) void {
.build_modes = true,
.requires_macos_sdk = true,
});
}
}