We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0176d27 commit 4cc016cCopy full SHA for 4cc016c
.github/workflows/test.yml
@@ -8,7 +8,7 @@ jobs:
8
name: Build and Test
9
strategy:
10
matrix:
11
- os: [macos-10.15, macos-11, ubuntu-18.04, ubuntu-20.04]
+ os: [macos-11, macos-11, ubuntu-18.04, ubuntu-20.04]
12
toolchain:
13
- wasm-5.5.0-RELEASE
14
runs-on: ${{ matrix.os }}
@@ -26,3 +26,12 @@ jobs:
26
SWIFT_VERSION=${{ matrix.toolchain }} make bootstrap
27
echo ${{ matrix.toolchain }} > .swift-version
28
make test
29
+ native-build:
30
+ # Check native build to make it easy to develop applications by Xcode
31
+ name: Build for native target
32
+ runs-on: macos-10.15
33
+ steps:
34
+ - uses: actions/checkout@v2
35
+ - run: swift build
36
+ env:
37
+ DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer/
0 commit comments