Skip to content

Commit

Permalink
Build and test with SwiftWasm 5.5 on CI (#460)
Browse files Browse the repository at this point in the history
Configuration for simultaneous builds with SwiftWasm 5.4 and 5.5 can't be specified more succinctly due to swiftwasm/swiftwasm-action#3. I had to create almost duplicate job descriptions because of that.
  • Loading branch information
MaxDesiatov authored Dec 21, 2021
1 parent d2d79c2 commit 5c3bc9d
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches: [main]

jobs:
swiftwasm_bundle:
swiftwasm_bundle_5_4:
runs-on: ubuntu-20.04

steps:
Expand All @@ -15,7 +15,7 @@ jobs:
with:
shell-action: carton bundle --product TokamakDemo

swiftwasm_test:
swiftwasm_test_5_4:
runs-on: ubuntu-20.04

steps:
Expand All @@ -24,6 +24,24 @@ jobs:
with:
shell-action: carton test

swiftwasm_bundle_5_5:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: swiftwasm/swiftwasm-action@v5.5
with:
shell-action: carton bundle --product TokamakDemo

swiftwasm_test_5_5:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: swiftwasm/swiftwasm-action@v5.5
with:
shell-action: carton test

core_macos_build:
runs-on: macos-11

Expand Down

0 comments on commit 5c3bc9d

Please sign in to comment.