Skip to content

Commit

Permalink
.github: pin Linux CI to Ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
bk138 committed Oct 6, 2024
1 parent 00bce8c commit 2ceb09b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-latest
- ubuntu-24.04
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
Expand All @@ -16,7 +16,7 @@ jobs:
with:
submodules: 'true'
- name: Install Ubuntu Build Dependencies
if: ${{ matrix.os == 'ubuntu-latest' }}
if: ${{ matrix.os == 'ubuntu-24.04' }}
run: |
sudo apt update
sudo apt install gettext libwxgtk3.2-dev libgtk-3-dev libgcrypt20-dev liblzo2-dev
Expand All @@ -41,7 +41,7 @@ jobs:
cmake --build .
cpack -V -C Debug
- name: Archive Ubuntu Build Artifacts
if: ${{ matrix.os == 'ubuntu-latest' }}
if: ${{ matrix.os == 'ubuntu-24.04' }}
uses: actions/upload-artifact@v3
with:
name: MultiVNC Debian Package
Expand Down

0 comments on commit 2ceb09b

Please sign in to comment.