Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,7 @@ jobs:
# backend does not work, due to unsupported relocations to hidden
# symbols in wee8.
supports_v8: false,
run_in_pr: true
},
{
build: macos-x64,
Expand All @@ -543,6 +544,7 @@ jobs:
exe: "",
llvm_url: "https://github.com/wasmerio/llvm-custom-builds/releases/download/21.x/llvm-darwin-amd64.tar.xz",
supports_v8: true,
run_in_pr: false
},
{
build: macos-arm,
Expand All @@ -551,6 +553,7 @@ jobs:
exe: "",
llvm_url: "https://github.com/wasmerio/llvm-custom-builds/releases/download/21.x/llvm-darwin-aarch64.tar.xz",
supports_v8: true,
run_in_pr: true
},
{
build: windows-x64,
Expand All @@ -560,12 +563,14 @@ jobs:
# For now, disable LLVM in `windows-x64.`
# llvm_url: 'https://github.com/wasmerio/llvm-custom-builds/releases/download/21.x/llvm-windows-amd64.tar.xz'
supports_v8: false,
run_in_pr: true
},
{
build: windows-gnu,
target: x86_64-pc-windows-gnu,
os: ubuntu-22.04,
supports_v8: false,
run_in_pr: true
},
{
build: linux-musl,
Expand All @@ -574,12 +579,14 @@ jobs:
exe: "",
container: "alpine:latest",
supports_v8: false,
run_in_pr: true
},
]
container: ${{ matrix.metadata.container }}
env:
SCCACHE_AZURE_BLOB_CONTAINER: wasmerstoragesccacheblob
SCCACHE_AZURE_CONNECTION_STRING: ${{ secrets.SCCACHE_AZURE_CONNECTION_STRING }}
if: ${{ matrix.run_in_pr }} || github.event_name != 'pull_request' || startsWith(github.head_ref, 'release-')
steps:
- uses: actions/checkout@v6
- name: Set up libstdc++ on Linux
Expand Down