Skip to content

Commit b496b6d

Browse files
committed
Fix Print step in the CI
1 parent 803bc6f commit b496b6d

1 file changed

Lines changed: 4 additions & 11 deletions

File tree

.github/workflows/cmake.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,11 @@ jobs:
2828
- uses: actions/checkout@v6
2929

3030
- name: Prints
31+
shell: bash
3132
run: |
32-
echo ${{ matrix.config.cc }}
33-
echo ${{ matrix.config.os }}
34-
gcc -v
35-
36-
- name: Install TBB Linux
37-
if: matrix.config.os == 'ubuntu-24.04'
38-
run: sudo apt install libtbb-dev
39-
40-
# - name: Install TBB MacOS
41-
# if: matrix.config.os == 'macos-latest'
42-
# run: brew install tbb
33+
echo ${{ matrix.config.cc }}
34+
echo ${{ matrix.config.os }}
35+
${{ matrix.config.cc }} --version 2>&1 || ${{ matrix.config.cc }} 2>&1 || true
4336
4437
- name: Info
4538
run: echo ${{ github.ref }}

0 commit comments

Comments
 (0)