Skip to content

Commit e02af08

Browse files
authored
Update CI (#648)
1 parent 6629233 commit e02af08

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/cpp-ci-serial-programs.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,33 +10,35 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [windows-2025, macos-13, ubuntu-24.04]
13-
qt_version: ['6.9.0']
13+
qt_version: ['6.9.1']
1414
include:
15-
- qt_version: '6.9.0'
15+
- qt_version: '6.9.1'
1616
qt_version_major: '6'
1717
qt_modules: 'qtmultimedia qtserialport'
1818

1919
steps:
2020
- uses: actions/checkout@v4
2121
with:
2222
path: Arduino-Source
23+
submodules: 'recursive'
2324
- uses: actions/checkout@v4
2425
with:
2526
repository: 'PokemonAutomation/Packages'
2627
path: Packages
28+
- uses: jurplel/install-qt-action@v4
29+
with:
30+
version: ${{ matrix.qt_version }}
31+
modules: ${{ matrix.qt_modules }}
2732
- name: Install dependencies
2833
if: startsWith(matrix.os, 'ubuntu')
2934
run: |
3035
sudo apt update
36+
sudo apt upgrade
3137
sudo apt install libopencv-dev
3238
- name: Install dependencies
3339
if: startsWith(matrix.os, 'mac')
3440
run: |
3541
brew install opencv onnxruntime
36-
- uses: jurplel/install-qt-action@v4
37-
with:
38-
version: ${{ matrix.qt_version }}
39-
modules: ${{ matrix.qt_modules }}
4042
- name: Generate binaries
4143
run: |
4244
cd Arduino-Source/SerialPrograms

0 commit comments

Comments
 (0)