mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 19:17:43 +00:00
maint/CICD ~ speedup CICD by decreasing redundant Travis CI workload
- 10 minutes to CI success/failure response from Travis CI (approx median time); down from 60 minutes .# [why] Most of the testing done on Travis CI is redundant with that done in the GHA:CICD. With prior settings, Travis CI was taking about an hour (median) to report success/failure. In contrast, the GHA:CICD workflow usually completes in about 13 minutes (median). Travis CI job times are highly variable taking between 3 and 20 minutes per build. Builds are run with some parallelism, and a report is submitted as soon as the non-"allow failure" jobs are completed.
This commit is contained in:
parent
ce632900e5
commit
356fe85a3f
1 changed files with 9 additions and 9 deletions
18
.travis.yml
18
.travis.yml
|
@ -6,7 +6,7 @@ rust:
|
|||
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
# - osx
|
||||
|
||||
env:
|
||||
# sphinx v1.8.0 is bugged & fails for linux builds; so, force specfic `sphinx` version
|
||||
|
@ -20,18 +20,18 @@ matrix:
|
|||
include:
|
||||
- rust: 1.31.0
|
||||
env: FEATURES=unix
|
||||
- rust: stable
|
||||
os: linux
|
||||
env: FEATURES=unix TEST_INSTALL=true
|
||||
- rust: stable
|
||||
os: osx
|
||||
env: FEATURES=macos TEST_INSTALL=true
|
||||
# - rust: stable
|
||||
# os: linux
|
||||
# env: FEATURES=unix TEST_INSTALL=true
|
||||
# - rust: stable
|
||||
# os: osx
|
||||
# env: FEATURES=macos TEST_INSTALL=true
|
||||
- rust: nightly
|
||||
os: linux
|
||||
env: FEATURES=nightly,unix
|
||||
env: FEATURES=nightly,unix TEST_INSTALL=true
|
||||
- rust: nightly
|
||||
os: osx
|
||||
env: FEATURES=nightly,macos
|
||||
env: FEATURES=nightly,macos TEST_INSTALL=true
|
||||
- rust: nightly
|
||||
os: linux
|
||||
env: FEATURES=nightly,feat_os_unix_redox CC=x86_64-unknown-redox-gcc CARGO_ARGS='--no-default-features --target=x86_64-unknown-redox' REDOX=1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue