Skip to content

Commit

Permalink
Print out tool version info in CI (#88)
Browse files Browse the repository at this point in the history
* Print out tool version info in CI
* Fix cl version info printout on windows
* Remove cl version check on windows

[Build]

Signed-off-by: Andrew Helwer <[email protected]>
  • Loading branch information
ahelwer authored Aug 18, 2023
1 parent 087b314 commit a12a08e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ jobs:
- name: Download TLA⁺ dependencies
if: matrix.os == 'windows-latest'
run: |
# Print out tool version information
java --version
python --version
pip --version
# Install python packages
pip install -r $SCRIPT_DIR/requirements.txt
# Put all dependencies in their own directory to ensure they aren't included implicitly
Expand All @@ -67,6 +70,12 @@ jobs:
- name: Download TLA⁺ dependencies
if: matrix.os != 'windows-latest'
run: |
# Print out tool version information
java --version
python --version
pip --version
cc --version
cpp --version
# Install python packages
pip install -r $SCRIPT_DIR/requirements.txt
# Put all dependencies in their own directory to ensure they aren't included implicitly
Expand Down

0 comments on commit a12a08e

Please sign in to comment.