Skip to content

Commit

Permalink
Deprecate docker-based WASM GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Ye committed Jan 24, 2024
1 parent b58fbde commit cecd056
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: ["5.7.3", "5.8.0", "5.9.1"]
os: [ubuntu-20.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: wasm-${{ matrix.swift_version }}-RELEASE
- name: build
run: |
swift build
- name: test
run: |
swift test

0 comments on commit cecd056

Please sign in to comment.