Skip to content

Commit

Permalink
gitaction: build on ubuntu 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
rjonaitis committed Jan 12, 2025
1 parent e1ea46a commit 5afabec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-22.04, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v2

- name: Install linux dependencies
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -qq libusb-1.0-0-dev libwxgtk3.2-dev liboctave-dev
sudo apt-get install -qq libusb-1.0-0-dev libwxbase3.0-dev libwxgtk3.0-gtk3-dev liboctave-dev
- name: Install osx dependencies
if: matrix.os == 'macos-latest'
Expand Down

0 comments on commit 5afabec

Please sign in to comment.