Skip to content

Commit

Permalink
Add ldd info to CI system config, and gcc & ldd on win
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross committed May 9, 2024
1 parent 2bd0653 commit c5008e7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 40 deletions.
1 change: 1 addition & 0 deletions etc/ci/describe-system-config-common-groups.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ group ulimit -aH
group ulimit -aS
group ghc --version
group ghc -v
group ldd --version
group gcc --version
group gcc -v
group opam switch
Expand Down
40 changes: 0 additions & 40 deletions etc/ci/describe-system-config-win.bat

This file was deleted.

5 changes: 5 additions & 0 deletions etc/ci/describe-system-config-win.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ Print-Group -name "coqc --config" -command { opam exec -- coqc --config }
Print-Group -name "coqc --version" -command { opam exec -- coqc --version }
Print-Group -name "coqtop version" -command { "" | opam exec -- coqtop }

# gcc
Print-Group -name "gcc -v" -command { opam exec -- gcc -v }
Print-Group -name "gcc --version" -command { opam exec -- gcc --version }
Print-Group -name "ldd --version" -command { opam exec -- ldd --version }

# Using make with environmental variables
Print-Group -name "make printenv" -command { opam exec -- make printenv }
Print-Group -name "PATH=$PATH" -command { & "$CYGWIN_ROOT\bin\bash.exe" -l -c 'echo "${PATH}"' }
Expand Down

0 comments on commit c5008e7

Please sign in to comment.