Skip to content

Commit

Permalink
Set shell
Browse files Browse the repository at this point in the history
  • Loading branch information
ToppDev committed Aug 9, 2024
1 parent 8128c7c commit cc9bdd8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/actions/check_tool_versions/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,37 +27,56 @@ runs:
using: "composite"
steps:
- run: uname -a
shell: bash
if: ${{ runner.os == 'Linux' }}
- run: cat /etc/issue
shell: bash
if: ${{ runner.os == 'Linux' }}
- run: sw_vers
shell: bash
if: ${{ runner.os == 'macOS' }}
- run: g++ --version
shell: bash
if: ${{ (runner.os == 'Linux' && startsWith(input.compiler, 'gcc') }}
- run: clang++ --version
shell: bash
if: ${{ ( runner.os == 'Linux' && startsWith(input.compiler, 'llvm') ) || runner.os == 'macOS' }}
- run: cl.exe
shell: pwsh
if: ${{ runner.os == 'Windows' }}
- run: clang-tidy --version
shell: bash
if: ${{ inputs.clangtidy }}
- run: clang-format --version
shell: bash
if: ${{ inputs.clangformat }}
- run: cmake --version
shell: bash
- run: conan --version
shell: bash
- run: conan profile show
shell: bash
- run: gcovr --version
shell: bash
if: ${{ runner.os == 'Linux' && inputs.coverage }}
- run: gcov --version
shell: bash
if: ${{ runner.os == 'Linux' && inputs.coverage }}
- run: xml_grep --version
shell: bash
if: ${{ runner.os == 'Linux' && inputs.coverage }}
- run: doxygen --version
shell: bash
if: ${{ inputs.documentation }}
- run: dvips --version
shell: bash
if: ${{ inputs.documentation }}
- run: gs --version
shell: bash
if: ${{ inputs.documentation }}
- run: latex --version
shell: bash
if: ${{ inputs.documentation }}
- run: command -v pdf2svg
shell: bash
if: ${{ inputs.documentation }}

0 comments on commit cc9bdd8

Please sign in to comment.