|
|
@ -32,7 +32,7 @@ jobs: |
|
|
|
- name: Setup Python venv |
|
|
|
- name: Setup Python venv |
|
|
|
run: rm -rf /tmp/venv && python3 -m venv /tmp/venv |
|
|
|
run: rm -rf /tmp/venv && python3 -m venv /tmp/venv |
|
|
|
- name: Install dependencies |
|
|
|
- name: Install dependencies |
|
|
|
run: sudo apt install -y ${{ matrix.install }} |
|
|
|
run: sudo apt update && sudo apt install -y ${{ matrix.install }} |
|
|
|
if: matrix.install != '' |
|
|
|
if: matrix.install != '' |
|
|
|
- name: Run tests |
|
|
|
- name: Run tests |
|
|
|
run: cd ${{ github.workspace }} && PATH=/tmp/venv/bin:$PATH CC=${{ matrix.CC }} bazel test --test_output=errors ... ${{ matrix.flags }} |
|
|
|
run: cd ${{ github.workspace }} && PATH=/tmp/venv/bin:$PATH CC=${{ matrix.CC }} bazel test --test_output=errors ... ${{ matrix.flags }} |
|
|
|