diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-01-02 22:25:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-02 22:25:45 +0000 |
commit | 49028f56c8e7aaf44b584b3391f81c37b0e1069f (patch) | |
tree | c17767ca69a3c5a70365b827b6cbc198b53cee55 | |
parent | 1e0fbcaa6c5991d6890966f8bd32ed00bfc462d3 (diff) |
Update cmake.yml
-rw-r--r-- | .github/workflows/cmake.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 7799db23..8e84cf40 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -31,7 +31,6 @@ jobs: CXX: c++ - os: windows-latest environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat" - steps: - uses: actions/checkout@v2 - uses: seanmiddleditch/gha-setup-ninja@master @@ -39,6 +38,9 @@ jobs: - name: Install Linux Dependencies run: sudo apt update && sudo apt install libprocps-dev libopencv-dev libopencv-dev if: matrix.os == 'ubuntu-latest' + + - name: Kill gcc + run: del /f C:\ProgramData\chocolatey\bin\c++.exe C:\ProgramData\chocolatey\bin\cc.exe C:\ProgramData\chocolatey\bin\ld.exe - name: Cache Qt id: cache-qt |