diff options
| author | Jack O'Connor <[email protected]> | 2020-04-11 23:01:46 -0400 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2020-04-11 23:03:32 -0400 |
| commit | 370ba3644ae2b38b91e52033fc7e9ae705920495 (patch) | |
| tree | 6037a286d0acc19bb0ca842270c0ad37736e0aa3 /.github | |
| parent | 86c3174d5b4bc98ccb65ca51402763e7ede15cb3 (diff) | |
print the compiler version in CI, for help with debugging
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19408fc..0eb486a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,8 +33,14 @@ jobs: toolchain: ${{ format('{0}-{1}', matrix.channel, matrix.target.toolchain) }} profile: minimal override: true + # Print the compiler version, for debugging. + - name: print compiler version + run: cargo run --quiet + working-directory: ./tools/compiler_version # Print out instruction set support, for debugging. - - run: cargo run --quiet --bin instruction_set_support + - name: print instruction set support + run: cargo run --quiet + working-directory: ./tools/instruction_set_support # Default tests plus Rayon. - run: cargo test --features=rayon # no_std tests. |
