-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change(ci): Disable beta Rust tests and add parameter download logging (
#4930) * Apply the same Rust logging settings to all GitHub workflows * Enable full optimisations in dev builds for downloading large parameter files * Disable beta Rust tests in CI
- Loading branch information
Showing
7 changed files
with
43 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ on: | |
|
||
env: | ||
CARGO_INCREMENTAL: 0 | ||
RUST_LOG: info | ||
RUST_BACKTRACE: full | ||
RUST_LIB_BACKTRACE: full | ||
COLORBT_SHOW_HIDDEN: '1' | ||
|
@@ -48,11 +49,11 @@ jobs: | |
# This step is meant to dynamically create a JSON containing the values of each crate | ||
# available in this repo in the root directory. We use `cargo tree` to accomplish this task. | ||
# | ||
# The result from `cargo tree` is then transform to JSON values between double quotes, | ||
# The result from `cargo tree` is then transform to JSON values between double quotes, | ||
# and separated by commas, then added to a `crates.txt` and assigned to a $JSON_CRATES variable. | ||
# | ||
# A JSON object is created and assigned to a $MATRIX variable, which is use to create an output | ||
# named `matrix`, which is then used as the input in following steps, | ||
# named `matrix`, which is then used as the input in following steps, | ||
# using ` ${{ fromJson(needs.matrix.outputs.matrix) }}` | ||
- id: set-matrix | ||
name: Dynamically build crates JSON | ||
|
@@ -104,7 +105,7 @@ jobs: | |
|
||
# We could use `features: ['', '--all-features', '--no-default-features']` as a matrix argument, | ||
# but it's faster to run these commands sequentially, so they can re-use the local cargo cache. | ||
# | ||
# | ||
# Some Zebra crates do not have any features, and most don't have any default features. | ||
- name: Build ${{ matrix.crate }} crate with no default features | ||
uses: actions-rs/[email protected] | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,7 @@ on: | |
rust_log: | ||
required: false | ||
type: string | ||
default: info | ||
|
||
jobs: | ||
build: | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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