From 189a54d4d638cb0e09f5edb319ccc0c300e2cee7 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 3 Jul 2020 18:47:55 +0200 Subject: ci: Fix running problemmatcher script on Windows --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cdd53f333..0a69eee1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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-')" -- cgit v1.2.3-54-g00ecf