Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/cpp-ci-serial-programs-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,16 @@ jobs:
- name: Checkout Arduino-Source
uses: actions/checkout@v7
with:
path: 'Arduino-Source'
submodules: 'recursive'
path: "Arduino-Source"
submodules: "recursive"

- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
# Delete aqtsource once https://github.com/miurahr/aqtinstall/issues/1007 is fixed and released
aqtsource: 'git+https://github.com/miurahr/aqtinstall'
version: '6.10.2'
modules: 'qtmultimedia qtserialport'
aqtsource: "git+https://github.com/miurahr/aqtinstall"
version: "6.10.2"
modules: "qtmultimedia qtserialport"

- name: Install dependencies (Ubuntu)
if: startsWith(inputs.os, 'ubuntu')
Expand Down Expand Up @@ -118,8 +118,8 @@ jobs:
uses: actions/checkout@v7
if: inputs.run-tests
with:
repository: 'PokemonAutomation/CommandLineTests'
path: 'CommandLineTests'
repository: "PokemonAutomation/CommandLineTests"
path: "CommandLineTests"

- name: Run tests (Windows)
if: startsWith(inputs.os, 'windows') && inputs.run-tests
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:

- name: Run clang query
if: inputs.run-clang-query
run : |
run: |
cd Arduino-Source

cat << 'EOF' > query.txt
Expand Down Expand Up @@ -181,4 +181,4 @@ jobs:
name: Clang query output (compiler=${{inputs.compiler}})
path: |
Arduino-Source/SerialPrograms/bin/compile_commands.json
Arduino-Source/clang-query-output.txt
Arduino-Source/clang-query-output.txt
1 change: 1 addition & 0 deletions .github/workflows/cpp-ci-serial-programs-mac-intel.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: C++ CI Serial Programs Mac Intel
on:
push:
branches: [main]
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cpp-ci-serial-programs-mac.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: C++ CI Serial Programs Mac
on:
push:
branches: [main]
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cpp-ci-serial-programs-ubuntu-clang.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: C++ CI Serial Programs Ubuntu clang
on:
push:
branches: [main]
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: C++ CI Serial Programs Ubuntu Default
on:
push:
branches: [main]
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cpp-ci-serial-programs-windows-clang.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: C++ CI Serial Programs Windows Clang
on:
push:
branches: [main]
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: C++ CI Serial Programs Windows Default
on:
push:
branches: [main]
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
Expand Down
Loading