Switch integration tests to newer Swift test matrix (#150) #311
This file contains hidden or 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
name: Main | ||
on: | ||
push: | ||
branches: [main] | ||
schedule: | ||
- cron: "0 8,20 * * *" | ||
jobs: | ||
unit-tests: | ||
name: Unit tests | ||
uses: apple/swift-nio/.github/workflows/unit_tests.yml@main | ||
with: | ||
linux_5_9_arguments_override: "--explicit-target-dependency-import-check error" | ||
linux_5_10_arguments_override: "--explicit-target-dependency-import-check error" | ||
linux_6_0_arguments_override: "--explicit-target-dependency-import-check error" | ||
linux_nightly_next_arguments_override: "--explicit-target-dependency-import-check error" | ||
linux_nightly_main_arguments_override: "--explicit-target-dependency-import-check error" | ||
windows_6_0_enabled: true | ||
windows_nightly_6_1_enabled: true | ||
windows_nightly_main_enabled: true | ||
windows_6_0_arguments_override: "--explicit-target-dependency-import-check error" | ||
windows_nightly_6_1_arguments_override: "--explicit-target-dependency-import-check error" | ||
windows_nightly_main_arguments_override: "--explicit-target-dependency-import-check error" | ||
construct-integration-test-matrix: | ||
name: Construct integration matrix | ||
runs-on: ubuntu-latest | ||
outputs: | ||
integration-test-matrix: '${{ steps.generate-matrix.outputs.integration-test-matrix }}' | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- id: generate-matrix | ||
run: echo "integration-test-matrix=$(curl -s https://raw.githubusercontent.com/apple/swift-nio/main/scripts/generate_matrix.sh | bash)" >> "$GITHUB_OUTPUT" | ||
env: | ||
MATRIX_LINUX_SETUP_COMMAND: apt-get update -y && apt-get install -yq jq | ||
MATRIX_LINUX_COMMAND: ./scripts/run-integration-test.sh | ||
integration-test: | ||
name: Integration test | ||
needs: construct-integration-test-matrix | ||
uses: apple/swift-nio/.github/workflows/swift_test_matrix.yml@main | ||
with: | ||
name: "Integration test" | ||
matrix_string: '${{ needs.construct-integration-test-matrix.outputs.integration-test-matrix }}' | ||
matrix_linux_nightly_main_enabled: false | ||
Check failure on line 49 in .github/workflows/main.yml
|
||
static-sdk: | ||
name: Static SDK | ||
# Workaround https://github.com/nektos/act/issues/1875 | ||
uses: apple/swift-nio/.github/workflows/static_sdk.yml@main | ||
macos-tests: | ||
name: macOS tests | ||
uses: apple/swift-nio/.github/workflows/macos_tests.yml@main | ||
with: | ||
runner_pool: nightly | ||
build_scheme: swift-openapi-runtime |