Unify main.yml and scheduled.yml, remove 5_8 ref (#214)
### Motivation: * `main.yml` and `scheduled.yml` are mostly duplicative. * Scheduled runs failed because of a deprecated reference to a Swift 5.8 pipeline ### Modifications: * Unify `main.yml` and `scheduled.yml` * Remove the reference to the 5.8 pipeline ### Result: Working scheduled runs.
This commit is contained in:
parent
c73112efc0
commit
ea297604dc
|
|
@ -3,13 +3,14 @@ name: Main
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
schedule:
|
||||||
|
- cron: "0 8,20 * * *"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
unit-tests:
|
unit-tests:
|
||||||
name: Unit tests
|
name: Unit tests
|
||||||
uses: apple/swift-nio/.github/workflows/unit_tests.yml@main
|
uses: apple/swift-nio/.github/workflows/unit_tests.yml@main
|
||||||
with:
|
with:
|
||||||
linux_5_8_enabled: false
|
|
||||||
linux_5_9_arguments_override: "-Xswiftc -warnings-as-errors --explicit-target-dependency-import-check error"
|
linux_5_9_arguments_override: "-Xswiftc -warnings-as-errors --explicit-target-dependency-import-check error"
|
||||||
linux_5_10_arguments_override: "-Xswiftc -warnings-as-errors --explicit-target-dependency-import-check error"
|
linux_5_10_arguments_override: "-Xswiftc -warnings-as-errors --explicit-target-dependency-import-check error"
|
||||||
linux_6_0_arguments_override: "-Xswiftc -warnings-as-errors --explicit-target-dependency-import-check error -Xswiftc -require-explicit-sendable"
|
linux_6_0_arguments_override: "-Xswiftc -warnings-as-errors --explicit-target-dependency-import-check error -Xswiftc -require-explicit-sendable"
|
||||||
|
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
||||||
name: Scheduled
|
|
||||||
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: "0 8,20 * * *"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
unit-tests:
|
|
||||||
name: Unit tests
|
|
||||||
uses: apple/swift-nio/.github/workflows/unit_tests.yml@main
|
|
||||||
with:
|
|
||||||
linux_5_8_enabled: false
|
|
||||||
linux_5_9_arguments_override: "-Xswiftc -warnings-as-errors --explicit-target-dependency-import-check error"
|
|
||||||
linux_5_10_arguments_override: "-Xswiftc -warnings-as-errors --explicit-target-dependency-import-check error"
|
|
||||||
linux_6_0_arguments_override: "-Xswiftc -warnings-as-errors --explicit-target-dependency-import-check error -Xswiftc -require-explicit-sendable"
|
|
||||||
linux_nightly_6_0_arguments_override: "--explicit-target-dependency-import-check error -Xswiftc -require-explicit-sendable"
|
|
||||||
linux_nightly_main_arguments_override: "--explicit-target-dependency-import-check error -Xswiftc -require-explicit-sendable"
|
|
||||||
|
|
||||||
integration-tests:
|
|
||||||
name: Integration test
|
|
||||||
uses: apple/swift-nio/.github/workflows/swift_matrix.yml@main
|
|
||||||
with:
|
|
||||||
name: "Integration test"
|
|
||||||
matrix_linux_command: "apt-get update -yq && apt-get install -yq lsof dnsutils netcat-openbsd net-tools expect curl jq && ./scripts/integration_tests.sh"
|
|
||||||
Loading…
Reference in New Issue