You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/CICD.yml
+18-9Lines changed: 18 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1009,7 +1009,7 @@ jobs:
1009
1009
- uses: dtolnay/rust-toolchain@master
1010
1010
with:
1011
1011
toolchain: ${{ matrix.job.toolchain }}
1012
-
components: rustfmt
1012
+
components: llvm-tools-preview
1013
1013
- uses: taiki-e/install-action@nextest
1014
1014
- uses: taiki-e/install-action@grcov
1015
1015
- uses: Swatinem/rust-cache@v2
@@ -1070,24 +1070,32 @@ jobs:
1070
1070
run: |
1071
1071
## Dependent VARs setup
1072
1072
outputs() { step_id="${{ github.action }}"; for var in "$@" ; do echo steps.${step_id}.outputs.${var}="${!var}"; echo "${var}=${!var}" >> $GITHUB_OUTPUT; done; }
# GRCOV_IGNORE_OPTION='--ignore build.rs --ignore "vendor/*" --ignore "/*" --ignore "[a-zA-Z]:/*"' ## `grcov` ignores these params when passed as an environment variable (why?)
1101
-
# GRCOV_EXCLUDE_OPTION='--excl-br-line "^\s*((debug_)?assert(_eq|_ne)?!|#\[derive\()"' ## `grcov` ignores these params when passed as an environment variable (why?)
0 commit comments