Skip to content

Commit f13f592

Browse files
Temporarily skip PluginSmokeTests on CI toolchain nightly
1 parent c729deb commit f13f592

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ jobs:
103103
wasi-swift-sdk-download: "https://github.com/swiftwasm/swift/releases/download/swift-wasm-DEVELOPMENT-SNAPSHOT-2024-10-15-a/swift-wasm-DEVELOPMENT-SNAPSHOT-2024-10-15-a-wasm32-unknown-wasi.artifactbundle.zip"
104104
wasi-swift-sdk-id: DEVELOPMENT-SNAPSHOT-2024-10-15-a-wasm32-unknown-wasi
105105
wasi-swift-sdk-checksum: "229cd9d3b0ed582c7ef7c3064888ad78764e4743b5a770df92554a94513f53fb"
106+
test-args: "-Xswiftc -DWASMKIT_CI_TOOLCHAIN_NIGHTLY"
106107

107108
runs-on: ubuntu-22.04
108109
name: "build-linux (${{ matrix.swift }})"

Tests/WITExtractorPluginTests/PluginSmokeTests.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ import XCTest
22

33
class PluginSmokeTests: XCTestCase {
44
func testExtractPlugin() throws {
5+
#if WASMKIT_CI_TOOLCHAIN_NIGHTLY
6+
throw XCTSkip("XFAIL: https://github.com/swiftwasm/WasmKit/issues/184")
7+
#endif
58
guard ProcessInfo.processInfo.environment["__XCODE_BUILT_PRODUCTS_DIR_PATHS"] == nil else {
69
throw XCTSkip(
710
"\"swift package resolve\" somehow fails to clone git repository only when invoking from Xcode test runner"

0 commit comments

Comments
 (0)