Skip to content

Commit 7e3230f

Browse files
committed
Merge branch 'main' into jed/async-closure
2 parents a62f6be + 0a38d70 commit 7e3230f

File tree

23 files changed

+1058
-482
lines changed

23 files changed

+1058
-482
lines changed

.github/workflows/test.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ jobs:
88
name: Build and Test
99
strategy:
1010
matrix:
11-
os: [macos-10.15, macos-11, ubuntu-18.04, ubuntu-20.04]
11+
os: [macos-10.15, macos-11, macos-12, ubuntu-18.04, ubuntu-20.04]
1212
toolchain:
1313
- wasm-5.5.0-RELEASE
14+
- wasm-5.6.0-RELEASE
1415
runs-on: ${{ matrix.os }}
1516
steps:
1617
- name: Checkout
@@ -26,3 +27,21 @@ jobs:
2627
SWIFT_VERSION=${{ matrix.toolchain }} make bootstrap
2728
echo ${{ matrix.toolchain }} > .swift-version
2829
make test
30+
native-build:
31+
# Check native build to make it easy to develop applications by Xcode
32+
name: Build for native target
33+
strategy:
34+
matrix:
35+
include:
36+
- os: macos-10.15
37+
xcode: Xcode_12.4
38+
- os: macos-11
39+
xcode: Xcode_13.2.1
40+
- os: macos-12
41+
xcode: Xcode_13.3
42+
runs-on: ${{ matrix.os }}
43+
steps:
44+
- uses: actions/checkout@v2
45+
- run: swift build
46+
env:
47+
DEVELOPER_DIR: /Applications/${{ matrix.xcode }}.app/Contents/Developer/

CHANGELOG.md

Lines changed: 111 additions & 67 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)