File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
.github/actions/setup-rust Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 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.
You can’t perform that action at this time.
0 commit comments