Skip to content

Commit

Permalink
ci: bump ubuntu version used
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-berger committed Jan 28, 2024
1 parent 61718b9 commit f336d85
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
strategy:
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
platform: [macos-latest, ubuntu-22.04, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
Expand All @@ -26,14 +26,15 @@ jobs:
with:
node-version: 20

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- run: rustup toolchain install stable --profile minimal

- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
- uses: Swatinem/rust-cache@988c164c3d0e93c4dbab36aaf5bbeb77425b2894

- name: Install dependencies (Ubuntu)
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1 libappindicator3-dev librsvg2-dev patchelf
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- run: pnpm i

Expand Down

0 comments on commit f336d85

Please sign in to comment.