Skip to content

Commit e8881c7

Browse files
committed
test shim
1 parent 37af62d commit e8881c7

File tree

8 files changed

+21
-21
lines changed

8 files changed

+21
-21
lines changed

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
name: Benchmarks
8888
needs: construct-matrix
8989
# Workaround https://github.com/nektos/act/issues/1875
90-
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@main
90+
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@static_sdk_allow_custom_args
9191
with:
9292
name: "Benchmarks"
9393
matrix_string: '${{ needs.construct-matrix.outputs.benchmarks-matrix }}'

.github/workflows/cxx_interop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
name: Cxx interop
8181
needs: construct-matrix
8282
# Workaround https://github.com/nektos/act/issues/1875
83-
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@main
83+
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@static_sdk_allow_custom_args
8484
with:
8585
name: "Cxx interop"
8686
matrix_string: '${{ needs.construct-matrix.outputs.cxx-interop-matrix }}'

.github/workflows/main.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
cxx-interop:
2222
name: Cxx interop
2323
# Workaround https://github.com/nektos/act/issues/1875
24-
uses: apple/swift-nio/.github/workflows/cxx_interop.yml@main
24+
uses: apple/swift-nio/.github/workflows/cxx_interop.yml@static_sdk_allow_custom_args
2525

2626
benchmarks:
2727
name: Benchmarks
2828
# Workaround https://github.com/nektos/act/issues/1875
29-
uses: apple/swift-nio/.github/workflows/benchmarks.yml@main
29+
uses: apple/swift-nio/.github/workflows/benchmarks.yml@static_sdk_allow_custom_args
3030
with:
3131
benchmark_package_path: "Benchmarks"
3232

@@ -50,25 +50,25 @@ jobs:
5050
name: Integration tests
5151
needs: construct-integration-test-matrix
5252
# Workaround https://github.com/nektos/act/issues/1875
53-
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@main
53+
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@static_sdk_allow_custom_args
5454
with:
5555
name: "Integration tests"
5656
matrix_string: '${{ needs.construct-integration-test-matrix.outputs.integration-test-matrix }}'
5757

5858
static-sdk:
5959
name: Static Linux Swift SDK
6060
# Workaround https://github.com/nektos/act/issues/1875
61-
uses: apple/swift-nio/.github/workflows/static_sdk.yml@main
61+
uses: apple/swift-nio/.github/workflows/static_sdk.yml@static_sdk_allow_custom_args
6262

6363
wasm-sdk:
6464
name: WebAssembly Swift SDK
6565
# Workaround https://github.com/nektos/act/issues/1875
66-
uses: apple/swift-nio/.github/workflows/wasm_sdk.yml@main
66+
uses: apple/swift-nio/.github/workflows/wasm_sdk.yml@static_sdk_allow_custom_args
6767

6868
macos-tests:
6969
name: macOS tests
7070
# Workaround https://github.com/nektos/act/issues/1875
71-
uses: apple/swift-nio/.github/workflows/macos_tests.yml@main
71+
uses: apple/swift-nio/.github/workflows/macos_tests.yml@static_sdk_allow_custom_args
7272
with:
7373
runner_pool: nightly
7474
build_scheme: swift-nio-Package
@@ -82,4 +82,4 @@ jobs:
8282

8383
release-builds:
8484
name: Release builds
85-
uses: apple/swift-nio/.github/workflows/release_builds.yml@main
85+
uses: apple/swift-nio/.github/workflows/release_builds.yml@static_sdk_allow_custom_args

.github/workflows/pull_request.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
unit-tests:
1515
name: Unit tests
1616
# Workaround https://github.com/nektos/act/issues/1875
17-
uses: apple/swift-nio/.github/workflows/unit_tests.yml@main
17+
uses: apple/swift-nio/.github/workflows/unit_tests.yml@static_sdk_allow_custom_args
1818
with:
1919
linux_5_10_arguments_override: "-Xswiftc -warnings-as-errors --explicit-target-dependency-import-check error"
2020
linux_6_0_arguments_override: "-Xswiftc -warnings-as-errors --explicit-target-dependency-import-check error"
@@ -25,14 +25,14 @@ jobs:
2525
benchmarks:
2626
name: Benchmarks
2727
# Workaround https://github.com/nektos/act/issues/1875
28-
uses: apple/swift-nio/.github/workflows/benchmarks.yml@main
28+
uses: apple/swift-nio/.github/workflows/benchmarks.yml@static_sdk_allow_custom_args
2929
with:
3030
benchmark_package_path: "Benchmarks"
3131

3232
cxx-interop:
3333
name: Cxx interop
3434
# Workaround https://github.com/nektos/act/issues/1875
35-
uses: apple/swift-nio/.github/workflows/cxx_interop.yml@main
35+
uses: apple/swift-nio/.github/workflows/cxx_interop.yml@static_sdk_allow_custom_args
3636

3737
construct-integration-test-matrix:
3838
name: Construct integration test matrix
@@ -54,7 +54,7 @@ jobs:
5454
name: Integration tests
5555
needs: construct-integration-test-matrix
5656
# Workaround https://github.com/nektos/act/issues/1875
57-
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@main
57+
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@static_sdk_allow_custom_args
5858
with:
5959
name: "Integration tests"
6060
matrix_string: '${{ needs.construct-integration-test-matrix.outputs.integration-test-matrix }}'
@@ -80,7 +80,7 @@ jobs:
8080
macos-tests:
8181
name: macOS tests
8282
# Workaround https://github.com/nektos/act/issues/1875
83-
uses: apple/swift-nio/.github/workflows/macos_tests.yml@main
83+
uses: apple/swift-nio/.github/workflows/macos_tests.yml@static_sdk_allow_custom_args
8484
with:
8585
runner_pool: general
8686
build_scheme: swift-nio-Package
@@ -90,13 +90,13 @@ jobs:
9090
static-sdk:
9191
name: Static Linux Swift SDK
9292
# Workaround https://github.com/nektos/act/issues/1875
93-
uses: apple/swift-nio/.github/workflows/static_sdk.yml@main
93+
uses: apple/swift-nio/.github/workflows/static_sdk.yml@static_sdk_allow_custom_args
9494

9595
wasm-sdk:
9696
name: WebAssembly Swift SDK
9797
# Workaround https://github.com/nektos/act/issues/1875
98-
uses: apple/swift-nio/.github/workflows/wasm_sdk.yml@main
98+
uses: apple/swift-nio/.github/workflows/wasm_sdk.yml@static_sdk_allow_custom_args
9999

100100
release-builds:
101101
name: Release builds
102-
uses: apple/swift-nio/.github/workflows/release_builds.yml@main
102+
uses: apple/swift-nio/.github/workflows/release_builds.yml@static_sdk_allow_custom_args

.github/workflows/release_builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
name: Release builds
118118
needs: construct-matrix
119119
# Workaround https://github.com/nektos/act/issues/1875
120-
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@main
120+
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@static_sdk_allow_custom_args
121121
with:
122122
name: "Release builds"
123123
matrix_string: '${{ needs.construct-matrix.outputs.release-build-matrix }}'

.github/workflows/static_sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
static-sdk:
1212
name: Static SDK
1313
# Workaround https://github.com/nektos/act/issues/1875
14-
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@main
14+
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@static_sdk_allow_custom_args
1515
with:
1616
name: "Static SDK"
1717
matrix_string: >-

.github/workflows/swift_load_test_matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
name: Execute matrix
3636
needs: load-matrix
3737
# Workaround https://github.com/nektos/act/issues/1875
38-
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@main
38+
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@static_sdk_allow_custom_args
3939
with:
4040
name: ${{ inputs.name }}
4141
matrix_string: '${{ needs.load-matrix.outputs.swift-matrix }}'

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
name: Unit tests
160160
needs: construct-matrix
161161
# Workaround https://github.com/nektos/act/issues/1875
162-
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@main
162+
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@static_sdk_allow_custom_args
163163
with:
164164
name: "Unit tests"
165165
matrix_string: '${{ needs.construct-matrix.outputs.unit-test-matrix }}'

0 commit comments

Comments
 (0)