File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,15 @@ on: [push, pull_request]
3
3
jobs :
4
4
test :
5
5
name : Build and Test
6
- runs-on : macOS-10.15
6
+ strategy :
7
+ matrix :
8
+ os : [macOS-10.15, ubuntu-18.04]
9
+ include :
10
+ - os : macOS-10.15
11
+ toolchain : https://github.com/swiftwasm/swift/releases/download/swift-wasm-DEVELOPMENT-SNAPSHOT-2020-03-08-a/swift-wasm-DEVELOPMENT-SNAPSHOT-2020-03-08-a-osx.tar.gz
12
+ - os : ubuntu-18.04
13
+ toolchain : https://github.com/swiftwasm/swift/releases/download/swift-wasm-DEVELOPMENT-SNAPSHOT-2020-03-08-a/swift-wasm-DEVELOPMENT-SNAPSHOT-2020-03-08-a-linux.tar.gz
14
+ runs-on : ${{ matrix.os }}
7
15
steps :
8
16
- name : Checkout
9
17
uses : actions/checkout@master
19
27
make bootstrap
20
28
make test
21
29
env :
22
- TOOLCHAIN_DOWNLOAD : https://github.com/swiftwasm/swift/releases/download/swift-wasm-DEVELOPMENT-SNAPSHOT-2020-03-08-a/swift-wasm-DEVELOPMENT-SNAPSHOT-2020-03-08-a-osx.tar.gz
30
+ TOOLCHAIN_DOWNLOAD : ${{ matrix.toolchain }}
You can’t perform that action at this time.
0 commit comments