|
| 1 | +name: PR |
| 2 | + |
| 3 | +on: |
| 4 | + pull_request: |
| 5 | + branches: [main] |
| 6 | + types: [opened, reopened, synchronize] |
| 7 | + |
| 8 | +jobs: |
| 9 | + soundness: |
| 10 | + name: Soundness |
| 11 | + uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main |
| 12 | + with: |
| 13 | + license_header_check_project_name: "gRPC" |
| 14 | + |
| 15 | + grpc-soundness: |
| 16 | + name: Soundness |
| 17 | + uses: ./.github/workflows/soundness.yml |
| 18 | + |
| 19 | + unit-tests: |
| 20 | + name: Unit tests |
| 21 | + uses: apple/swift-nio/.github/workflows/unit_tests.yml@main |
| 22 | + with: |
| 23 | + linux_5_9_enabled: false |
| 24 | + linux_5_10_enabled: false |
| 25 | + linux_6_0_arguments_override: "--explicit-target-dependency-import-check error -Xswiftc -require-explicit-sendable" |
| 26 | + linux_nightly_6_0_arguments_override: "--explicit-target-dependency-import-check error -Xswiftc -require-explicit-sendable" |
| 27 | + linux_nightly_main_arguments_override: "--explicit-target-dependency-import-check error -Xswiftc -require-explicit-sendable" |
| 28 | + |
| 29 | + integration-tests: |
| 30 | + name: Integration tests |
| 31 | + uses: apple/swift-nio/.github/workflows/swift_matrix.yml@main |
| 32 | + with: |
| 33 | + name: "Integration Tests" |
| 34 | + matrix_linux_5_9_enabled: false |
| 35 | + matrix_linux_5_10_enabled: false |
| 36 | + matrix_linux_command: "./dev/integration_tests.sh" |
| 37 | + |
| 38 | + examples: |
| 39 | + name: Examples |
| 40 | + uses: apple/swift-nio/.github/workflows/swift_matrix.yml@main |
| 41 | + with: |
| 42 | + name: "Examples" |
| 43 | + matrix_linux_5_9_enabled: false |
| 44 | + matrix_linux_5_10_enabled: false |
| 45 | + matrix_linux_command: "./dev/build-examples.sh" |
| 46 | + |
| 47 | + benchmarks: |
| 48 | + name: Benchmarks |
| 49 | + uses: apple/swift-nio/.github/workflows/benchmarks.yml@main |
| 50 | + with: |
| 51 | + benchmark_package_path: "IntegrationTests/Benchmarks" |
| 52 | + linux_5_9_enabled: false |
| 53 | + linux_5_10_enabled: false |
| 54 | + |
| 55 | + cxx-interop: |
| 56 | + name: Cxx interop |
| 57 | + uses: apple/swift-nio/.github/workflows/cxx_interop.yml@main |
| 58 | + with: |
| 59 | + linux_5_9_enabled: false |
| 60 | + linux_5_10_enabled: false |
0 commit comments