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
+53-17
Original file line number
Diff line number
Diff line change
@@ -1012,6 +1012,7 @@ jobs:
1012
1012
components: llvm-tools-preview
1013
1013
- uses: taiki-e/install-action@nextest
1014
1014
- uses: taiki-e/install-action@grcov
1015
+
- uses: taiki-e/install-action@cargo-llvm-cov
1015
1016
- uses: Swatinem/rust-cache@v2
1016
1017
- name: Run sccache-cache
1017
1018
uses: mozilla-actions/sccache-action@v0.0.6
@@ -1023,29 +1024,37 @@ jobs:
1023
1024
run: |
1024
1025
## VARs setup
1025
1026
outputs() { step_id="${{ github.action }}"; for var in "$@" ; do echo steps.${step_id}.outputs.${var}="${!var}"; echo "${var}=${!var}" >> $GITHUB_OUTPUT; done; }
1027
+
1026
1028
# toolchain
1027
1029
TOOLCHAIN="nightly" ## default to "nightly" toolchain (required for certain required unstable compiler flags) ## !maint: refactor when stable channel has needed support
1030
+
1028
1031
# * specify gnu-type TOOLCHAIN for windows; `grcov` requires gnu-style code coverage data files
1029
1032
case ${{ matrix.job.os }} in windows-*) TOOLCHAIN="$TOOLCHAIN-x86_64-pc-windows-gnu" ;; esac;
1033
+
1030
1034
# * use requested TOOLCHAIN if specified
1031
1035
if [ -n "${{ matrix.job.toolchain }}" ]; then TOOLCHAIN="${{ matrix.job.toolchain }}" ; fi
1032
1036
outputs TOOLCHAIN
1037
+
1033
1038
# target-specific options
1034
1039
# * CARGO_FEATURES_OPTION
1035
1040
CARGO_FEATURES_OPTION='--all-features' ; ## default to '--all-features' for code coverage
1036
1041
if [ -n "${{ matrix.job.features }}" ]; then CARGO_FEATURES_OPTION='--features=${{ matrix.job.features }}' ; fi
1037
1042
outputs CARGO_FEATURES_OPTION
1043
+
1038
1044
# * CODECOV_FLAGS
1039
1045
CODECOV_FLAGS=$( echo "${{ matrix.job.os }}" | sed 's/[^[:alnum:]]/_/g' )
1040
1046
outputs CODECOV_FLAGS
1047
+
1041
1048
- name: Install/setup prerequisites
1042
1049
shell: bash
1043
1050
run: |
1044
1051
## Install/setup prerequisites
1045
1052
case '${{ matrix.job.os }}' in
1046
-
macos-latest) brew install coreutils ;; # needed for testing
1047
-
esac
1048
-
case '${{ matrix.job.os }}' in
1053
+
macos-latest)
1054
+
# needed for testing
1055
+
brew install coreutils
1056
+
;;
1057
+
1049
1058
ubuntu-latest)
1050
1059
# pinky is a tool to show logged-in users from utmp, and gecos fields from /etc/passwd.
1051
1060
# In GitHub Action *nix VMs, no accounts log in, even the "runner" account that runs the commands. The account also has empty gecos fields.
@@ -1059,11 +1068,13 @@ jobs:
1059
1068
touch /home/runner/.project
1060
1069
echo "foo" > /home/runner/.plan
1061
1070
;;
1071
+
1072
+
windows-latest)
1073
+
# Update binutils if MinGW due to https://github.com/rust-lang/rust/issues/112368
outputs() { step_id="${{ github.action }}"; for var in "$@" ; do echo steps.${step_id}.outputs.${var}="${!var}"; echo "${var}=${!var}" >> $GITHUB_OUTPUT; done; }
0 commit comments