Skip to content

Commit

Permalink
fix github build action error
Browse files Browse the repository at this point in the history
  • Loading branch information
jkriege2 committed May 21, 2024
1 parent 838e0af commit 97c3c02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ jobs:
uses: jurplel/install-qt-action@v3
with:
version: '5.15.2'
- name: Install OpenCV
uses: Dovyski/[email protected]
with:
opencv-version: '4.0.0'
- name: checkout
uses: actions/checkout@v4
- name: Configure
Expand Down
12 changes: 4 additions & 8 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,19 @@ jobs:
- {gen: Visual Studio 17 2022, arch: x64, shared: OFF}
steps:
- name: Install Qt Win64
if: arch=='x64'
if: ${{ matrix.arch=='x64' }}
uses: jurplel/install-qt-action@v3
with:
version: '5.15.2'
host: 'windows'
arch: 'win64_msvc2019_64'
- name: Install Qt Win64
if: arch=='Win32'
- name: Install Qt Win32
if: ${{ matrix.arch=='Win32' }}
uses: jurplel/install-qt-action@v3
with:
version: '5.15.2'
host: 'windows'
arch: 'win64_msvc2019_32'
- name: Install OpenCV
uses: Dovyski/[email protected]
with:
opencv-version: '4.0.0'
arch: 'win32_msvc2019_32'
- name: checkout
uses: actions/checkout@v4
- name: Configure
Expand Down

0 comments on commit 97c3c02

Please sign in to comment.