Skip to content

Commit f4a8c13

Browse files
committed
test
Signed-off-by: Joe Isaacs <[email protected]>
1 parent ef8901a commit f4a8c13

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/actions/setup-rust/action.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,26 @@ runs:
3737
targets: "${{inputs.targets || ''}}"
3838
components: "${{ inputs.components || 'clippy, rustfmt' }}"
3939

40+
- name: test print runner
41+
shell: bash
42+
run: |
43+
echo "=== Runner Context ==="
44+
echo "runner.name: ${{ runner.name }}"
45+
echo "runner.os: ${{ runner.os }}"
46+
echo "runner.arch: ${{ runner.arch }}"
47+
echo "runner.environment: ${{ runner.environment }}"
48+
echo "runner.temp: ${{ runner.temp }}"
49+
echo "runner.tool_cache: ${{ runner.tool_cache }}"
50+
echo "runner.debug: ${{ runner.debug }}"
51+
echo ""
52+
echo "=== Environment Variables ==="
53+
env | grep -i runs || true
54+
env | grep -i sccache || true
55+
echo ""
56+
echo "=== Rust Info ==="
57+
echo "Rust version: $(rustc --version)"
58+
echo "Rust toolchain: $(rustup toolchain list)"
59+
4060
# Skip rust-cache when S3 sccache is already configured (detected via SCCACHE_BUCKET env).
4161
# The rust-cache was ~10GB and took 3+ minutes to extract, while sccache
4262
# S3 backend already provides efficient compile caching.

0 commit comments

Comments
 (0)