diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-01-02 22:48:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-02 22:48:05 +0000 |
commit | 6970b77307004f5fc8846637e7499bfd75d825d2 (patch) | |
tree | 3a7033292e7dd563886a7c77e19b9dec48d8063b /.github | |
parent | bfec2a5b0daa533fb32de4e32978c87c05bcb171 (diff) |
Update cmake.yml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cmake.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 671cf8c7..6fb32ac4 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -39,12 +39,12 @@ jobs: run: sudo apt update && sudo apt install libprocps-dev libopencv-dev libopencv-dev if: matrix.os == 'ubuntu-latest' - - 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 } } + - name: Show path + run: echo $ENV:PATH 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 } } + + - name: bail + run: error if: matrix.os == 'windows-latest' - name: Cache Qt |