Skip to content
Open
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
14 changes: 6 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
rust_toolchain: [stable, "1.74"]
rust_toolchain: [stable, "1.77"]
exclude:
- os: windows-latest
rust_toolchain: "1.74"
rust_toolchain: "1.77"

runs-on: ${{ matrix.os }}

Expand All @@ -37,8 +37,7 @@ jobs:
matrix:
qt_version: [5, 6]

# ubuntu-latest is not the latest
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -66,8 +65,7 @@ jobs:
run: make build-examples

build-deb:
# ubuntu-latest is not the latest
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -81,7 +79,7 @@ jobs:
run: make -C qmluic deb
- uses: actions/upload-artifact@v4
with:
name: ubuntu-22.04-deb
name: ubuntu-latest-deb
path: qmluic_*.deb
retention-days: 5

Expand All @@ -92,7 +90,7 @@ jobs:
- name: Install clippy
uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.74"
toolchain: "1.77"
components: clippy
# TODO: should we switch to actions-rs/clippy-check?
- name: Lint with clippy
Expand Down
Loading
Loading