forked from OpenCombine/OpenCombine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial support for swift-docc documentation and bump to Swift 5.7 (#2)
* Initial support for swift-docc documentation * Update OpenCombine.md * Remove unneccessary Swift 5.7 check code * Update CI job * Fix Swift 6 warning issue * Remove cocoapods support and update action * Fix compile issue on some Xcode version * Fix testMapKeyPathReflection test case on Swift 5.8+ * Fix PublisherConcurrencyTests case on some Swift version * Skip some tests on DispatchQueueSchedulerTests * Skip some tests on Linux platform This is failing on GitHub action but I can’t reproduce it locally on Ubuntu 22.04 + Swift 5.9.2 * Add TSAN check support and skip some tests on Linux when TSAN is enabled Compiler.h is from WebKit code See https://github.com/WebKit/WebKit/blob/57feb7424beb442bf5df7ca404f4439bbad72717/Source/WTF/wtf/Compiler.h * Update macos yml to skip release test on Xcode 14.3.1 * Skip assertCrashes on Linux + TSAN * Skip another flacky test on macOS
- Loading branch information
Showing
42 changed files
with
617 additions
and
1,260 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,47 +2,32 @@ name: Wasm | |
|
||
on: | ||
push: | ||
branches: [master] | ||
branches: [main] | ||
pull_request: | ||
branches: [master] | ||
branches: [main] | ||
|
||
jobs: | ||
carton_wasmer_test_5_3: | ||
name: "Execute tests on Wasm (Swift 5.3)" | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: swiftwasm/[email protected] | ||
|
||
carton_wasmer_test_5_4: | ||
name: "Execute tests on Wasm (Swift 5.4)" | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: swiftwasm/[email protected] | ||
|
||
carton_wasmer_test_5_5: | ||
name: "Execute tests on Wasm (Swift 5.5)" | ||
carton_wasmer_test_5_7: | ||
name: "Execute tests on Wasm (Swift 5.7)" | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: swiftwasm/swiftwasm-action@v5.5 | ||
- uses: actions/checkout@v4 | ||
- uses: swiftwasm/swiftwasm-action@v5.7 | ||
|
||
carton_wasmer_test_5_6: | ||
name: "Execute tests on Wasm (Swift 5.6)" | ||
runs-on: ubuntu-20.04 | ||
# swiftwasm/[email protected] and @v5.9 is not supported upstream | ||
# carton_wasmer_test_5_8: | ||
# name: "Execute tests on Wasm (Swift 5.8)" | ||
# runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: swiftwasm/swiftwasm-action@v5.6 | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - uses: swiftwasm/swiftwasm-action@v5.8 | ||
|
||
carton_wasmer_test_5_7: | ||
name: "Execute tests on Wasm (Swift 5.7)" | ||
runs-on: ubuntu-20.04 | ||
# carton_wasmer_test_5_9: | ||
# name: "Execute tests on Wasm (Swift 5.9)" | ||
# runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: swiftwasm/swiftwasm-action@v5.7 | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - uses: swiftwasm/swiftwasm-action@v5.9 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
version: 1 | ||
builder: | ||
configs: | ||
- swift_version: 5.9 | ||
documentation_targets: [OpenCombine, OpenCombineDispatch, OpenCombineFoundation] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.