Skip to content

Commit

Permalink
Deprecate docker-based WASM GitHub action (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Ye authored Jan 24, 2024
1 parent b58fbde commit d81fffe
Showing 1 changed file with 17 additions and 18 deletions.
35 changes: 17 additions & 18 deletions .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,22 @@ on:
branches: [main]

jobs:
# Matrics is not supported
# See https://github.com/swiftwasm/swiftwasm-action/issues/3
carton_wasmer_test_5_7:
name: "Execute tests on Wasm (Swift 5.7)"
runs-on: ubuntu-20.04
wasmer_test:
name: Execute tests on WASM
strategy:
fail-fast: false
matrix:
swift_version: ["wasm-5.9.1-RELEASE", "wasm-5.10-SNAPSHOT-2024-01-13-a"]
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: swiftwasm/[email protected]
carton_wasmer_test_5_8:
name: "Execute tests on Wasm (Swift 5.8)"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: swiftwasm/[email protected]
carton_wasmer_test_5_9:
name: "Execute tests on Wasm (Swift 5.9)"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: swiftwasm/[email protected]
- uses: swiftwasm/setup-swiftwasm@v1
with:
swift-version: ${{ matrix.swift_version }}
- name: build
run: |
swift build
- name: test
run: |
swift test

0 comments on commit d81fffe

Please sign in to comment.