ci: Fix running problemmatcher script on Windows

This commit is contained in:
Florian Bruhin 2020-07-03 18:47:55 +02:00
parent f916965cd5
commit 189a54d4d6
1 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ jobs:
node-version: '12.x'
if: "matrix.testenv == 'eslint'"
- name: Set up problem matchers
run: "python3 scripts/dev/ci/problemmatchers.py ${{ matrix.testenv }} ${{ runner.temp }}"
run: "python scripts/dev/ci/problemmatchers.py ${{ matrix.testenv }} ${{ runner.temp }}"
- name: Install dependencies
run: |
[[ ${{ matrix.testenv }} == eslint ]] && npm install -g eslint
@ -69,7 +69,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up problem matchers
run: "python3 scripts/dev/ci/problemmatchers.py py38 ${{ runner.temp }}"
run: "python scripts/dev/ci/problemmatchers.py py38 ${{ runner.temp }}"
- run: tox -e py38
tests:
@ -145,7 +145,7 @@ jobs:
with:
python-version: "${{ matrix.python }}"
- name: Set up problem matchers
run: "python3 scripts/dev/ci/problemmatchers.py ${{ matrix.testenv }} ${{ runner.temp }}"
run: "python scripts/dev/ci/problemmatchers.py ${{ matrix.testenv }} ${{ runner.temp }}"
- name: Install apt dependencies
run: sudo apt-get install --no-install-recommends libyaml-dev libegl1-mesa libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0
if: "startsWith(matrix.os, 'ubuntu-')"