We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b298c58 commit d9ed21eCopy full SHA for d9ed21e
.github/workflows/main.yml
@@ -4,7 +4,6 @@ on: [push, pull_request]
4
env:
5
RUSTDOCFLAGS: -Dwarnings
6
RUSTFLAGS: -Dwarnings
7
- RUST_COMPILER_RT_ROOT: ./compiler-rt
8
9
jobs:
10
test:
@@ -131,7 +130,9 @@ jobs:
131
130
key: ${{ runner.os }}-compiler-rt-${{ hashFiles('ci/download-compiler-rt.sh') }}
132
- name: Download compiler-rt reference sources
133
if: steps.cache-compiler-rt.outputs.cache-hit != 'true'
134
- run: ./ci/download-compiler-rt.sh
+ run: |
+ ./ci/download-compiler-rt.sh
135
+ echo "RUST_COMPILER_RT_ROOT=$(realpath ./compiler-rt)" >> "$GITHUB_ENV"
136
shell: bash
137
138
# Non-linux tests just use our raw script
0 commit comments