summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-01-02 22:41:25 +0000
committerGitHub <noreply@github.com>2022-01-02 22:41:25 +0000
commitbfec2a5b0daa533fb32de4e32978c87c05bcb171 (patch)
tree37e52e0442cc500d58b3798e0c70ca20aec375e3
parent2d7cc3da334c6209e5e78779a7939772859fa78f (diff)
Update cmake.yml
-rw-r--r--.github/workflows/cmake.yml6
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