summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/cmake.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/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