Skip to content

Commit

Permalink
[Test-linux] Fix test action for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
rikyoz committed Oct 28, 2023
1 parent 0f66499 commit 0eb8fb3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/test_action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ runs:
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: Fix missing libc++ and libc++abi packages for clang compiler
shell: bash
if: |
runner.os == 'Linux' && ${{ contains(inputs.c_compiler, 'clang') }}
run: apt-get install libc++-*-dev libc++abi-*-dev
run: apt-get install libc++-*-dev libc++abi-*-dev -y

- name: Configure CMake
shell: ${{ inputs.shell }}
Expand Down

0 comments on commit 0eb8fb3

Please sign in to comment.