diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-01-02 22:41:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-02 22:41:25 +0000 |
commit | bfec2a5b0daa533fb32de4e32978c87c05bcb171 (patch) | |
tree | 37e52e0442cc500d58b3798e0c70ca20aec375e3 /.github | |
parent | 2d7cc3da334c6209e5e78779a7939772859fa78f (diff) |
Update cmake.yml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cmake.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index ffc66968..671cf8c7 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -39,10 +39,14 @@ jobs: run: sudo apt update && sudo apt install libprocps-dev libopencv-dev libopencv-dev if: matrix.os == 'ubuntu-latest' - - name: Kill gcc + - name: Kill chocolatey gcc run: foreach ($i in @("cc","c++","gcc","g++","ld")) { $x = "C:\ProgramData\chocolatey\bin\$i.exe"; if (test-path $x) { remove-item -force -path $x } } if: matrix.os == 'windows-latest' + - name: Kill strawberry gcc + run: foreach ($i in @("cc","c++","gcc","g++","ld")) { $x = "C:\Strawberry\c\bin\$i.exe"; if (test-path $x) { remove-item -force -path $x } } + if: matrix.os == 'windows-latest' + - name: Cache Qt id: cache-qt uses: actions/cache@v1 |