File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,10 +3,11 @@ set -euo pipefail
33
44SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd) "
55REPO_ROOT=" $( cd " $SCRIPT_DIR /../.." && pwd) "
6+ export GITHUB_OUTPUT=/dev/null
67
78matrix=" $( {
89 cd " $REPO_ROOT "
9- GH_RUN_ID=1 CT_PLATFORMS=rise-riscv scripts/ci/emit-manual-matrix.sh ct
10+ env -u GITHUB_OUTPUT GH_RUN_ID=1 CT_PLATFORMS=rise-riscv scripts/ci/emit-manual-matrix.sh ct
1011}) "
1112
1213jq -e '
@@ -20,13 +21,13 @@ jq -e '
2021
2122ct_default=" $( {
2223 cd " $REPO_ROOT "
23- GH_RUN_ID=1 CT_PLATFORMS=all scripts/ci/emit-manual-matrix.sh ct
24+ env -u GITHUB_OUTPUT GH_RUN_ID=1 CT_PLATFORMS=all scripts/ci/emit-manual-matrix.sh ct
2425}) "
2526jq -e ' length == 9 and any(.platform == "rise-riscv")' <<< " $ct_default" > /dev/null
2627
2728bench_default=" $( {
2829 cd " $REPO_ROOT "
29- GH_RUN_ID=1 BENCH_PLATFORMS=all scripts/ci/emit-manual-matrix.sh bench
30+ env -u GITHUB_OUTPUT GH_RUN_ID=1 BENCH_PLATFORMS=all scripts/ci/emit-manual-matrix.sh bench
3031}) "
3132jq -e ' length == 9 and any(.platform == "rise-riscv")' <<< " $bench_default" > /dev/null
3233
You can’t perform that action at this time.
0 commit comments