Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 5.6 release and macOS 12 with Xcode 13.3 to CI matrix #176

Merged
merged 9 commits into from
Apr 1, 2022
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ jobs:
name: Build and Test
strategy:
matrix:
os: [macos-10.15, macos-11, ubuntu-18.04, ubuntu-20.04]
os: [macos-10.15, macos-11, macos-12, ubuntu-18.04, ubuntu-20.04]
toolchain:
- wasm-5.5.0-RELEASE
- wasm-5.6-SNAPSHOT-2022-03-23-a
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand All @@ -29,9 +30,18 @@ jobs:
native-build:
# Check native build to make it easy to develop applications by Xcode
name: Build for native target
runs-on: macos-11
strategy:
matrix:
include:
- os: macos-10.15
xcode: Xcode_12.4
- os: macos-11
xcode: Xcode_13.2.1
- os: macos-12
xcode: Xcode_13.3
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- run: swift build
env:
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer/
DEVELOPER_DIR: /Applications/${{ matrix.xcode }}.app/Contents/Developer/
1 change: 1 addition & 0 deletions IntegrationTests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ TestSuites/.build/$(CONFIGURATION)/%.wasm: FORCE
--product $(basename $(notdir $@)) \
--triple wasm32-unknown-wasi \
--configuration $(CONFIGURATION) \
-Xswiftc -Xclang-linker -Xswiftc -mexec-model=reactor \
$(SWIFT_BUILD_FLAGS)

dist/%.wasm: TestSuites/.build/$(CONFIGURATION)/%.wasm
Expand Down