-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Skip tests with XCTExpectedFailure and comment * Add Windows CI Job
- Loading branch information
1 parent
23cbf22
commit 6f357ee
Showing
5 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,3 +43,27 @@ jobs: | |
- uses: swiftwasm/[email protected] | ||
with: | ||
shell-action: swift build | ||
|
||
windows: | ||
name: Windows | ||
strategy: | ||
matrix: | ||
os: [windows-latest] | ||
config: ['debug', 'release'] | ||
fail-fast: false | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: compnerd/gha-setup-swift@main | ||
with: | ||
branch: swift-5.8.1-release | ||
tag: 5.8.1-RELEASE | ||
- uses: actions/checkout@v3 | ||
- name: Build | ||
run: swift build -c ${{ matrix.config }} | ||
- name: Run tests (debug only) | ||
# There is an issue that exists in the 5.8.1 toolchain | ||
# which fails on release configuration testing, but | ||
# this issue is fixed 5.9 so we can remove the if once | ||
# that is generally available. | ||
if: ${{ matrix.config == 'debug' }} | ||
run: swift test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
Tests/XCTestDynamicOverlayTests/GeneratePlaceholderTests.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters