Skip to content

Commit

Permalink
Add choco --ignore-existing
Browse files Browse the repository at this point in the history
  • Loading branch information
whyb committed Jan 20, 2025
1 parent a9e2c07 commit a7f6a7c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:

- name: Install dependencies
run: |
choco install cmake --version=3.31.3
choco install opencv --version=4.10.0
choco install cmake --version=3.31.3 --ignore-existing
choco install opencv --version=4.10.0 --ignore-existing
- name: CMake Configure & Generate
run: cmake -S . -B build -DBUILD_EXAMPLE:BOOL="1" -DBUILD_EXAMPLE_OPENCV:BOOL="1" -DBUILD_BENCHMARK:BOOL="1" -DUSE_OPENMP:BOOL="1" -DOpenCV_DIR:PATH="C:\tools\opencv\build"
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:

- name: Install dependencies
run: |
choco install cmake --version=3.31.3
choco install cmake --version=3.31.3 --ignore-existing
- name: CMake Configure & Generate
run: cmake -S . -B build -DBUILD_EXAMPLE:BOOL="1" -DBUILD_BENCHMARK:BOOL="1" -DUSE_OPENMP:BOOL="1" -A Win32
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:

- name: Install dependencies
run: |
choco install cmake --version=3.31.3
choco install cmake --version=3.31.3 --ignore-existing
- name: CMake Configure & Generate
run: cmake -S . -B build -DBUILD_EXAMPLE:BOOL="1" -DBUILD_BENCHMARK:BOOL="1" -DUSE_OPENMP:BOOL="1" -A ARM64
Expand All @@ -134,7 +134,7 @@ jobs:

- name: Install dependencies
run: |
choco install cmake --version=3.31.3
choco install cmake --version=3.31.3 --ignore-existing
- name: CMake Configure & Generate
run: cmake -S . -B build -DBUILD_EXAMPLE:BOOL="1" -DBUILD_BENCHMARK:BOOL="1" -DUSE_OPENMP:BOOL="1" -A ARM
Expand Down

0 comments on commit a7f6a7c

Please sign in to comment.