Skip to content

Commit

Permalink
chore(CI): Produce version information during build
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysn committed Oct 24, 2024
1 parent a3dbf34 commit 221cc50
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,17 @@ jobs:
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
sudo apt-get install ninja-build gcc-arm-none-eabi
- name: "Show installed versions"
run: |
set -x
llvm-config --libs
cargo version
laze --version
gcc-arm-none-eabi --version
clang --version
# Check which alternative versions are installed
IFS=":"; for p in $PATH; do ls $p/llvm-config-* $p/clang-* 2>/dev/null; done
- name: "limit build unless nightly build"
if: github.event_name != 'schedule'
run: |
Expand Down

0 comments on commit 221cc50

Please sign in to comment.