Skip to content

Commit

Permalink
Merge pull request #71 from Kichura/ubuntu-ci
Browse files Browse the repository at this point in the history
Update Ubuntu to 22.04
  • Loading branch information
Madis0 authored Dec 20, 2024
2 parents 41a11f7 + 785c65c commit cb0bedf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
fail-fast: false
matrix:
# maybe update to macOS 14 if this is ARM64-ready?
platform: [macos-13, ubuntu-20.04, windows-2025]
platform: [macos-13, ubuntu-22.04, windows-2025]

runs-on: ${{ matrix.platform }}
steps:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Deploy Rust to CI
uses: dtolnay/rust-toolchain@stable
- name: Install dependencies (Ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
Expand All @@ -78,13 +78,13 @@ jobs:
RUSTC_WRAPPER: 'sccache'
- name: Upload the Linux packages (AppImage)
uses: actions/upload-artifact@v4
if: matrix.platform == 'ubuntu-20.04'
if: matrix.platform == 'ubuntu-22.04'
with:
name: linux-packages
path: src-tauri/target/release/bundle/appimage/*.AppImage
- name: Upload the Linux packages (ELF)
uses: actions/upload-artifact@v4
if: matrix.platform == 'ubuntu-20.04'
if: matrix.platform == 'ubuntu-22.04'
with:
name: linux-packages-raw
# TODO: a better way to find just the binary
Expand All @@ -108,13 +108,13 @@ jobs:
RUSTC_WRAPPER: 'sccache'
- name: Upload the Linux packages (AppImage, debug)
uses: actions/upload-artifact@v4
if: matrix.platform == 'ubuntu-20.04'
if: matrix.platform == 'ubuntu-22.04'
with:
name: linux-packages-debug
path: src-tauri/target/debug/bundle/appimage/*.AppImage
- name: Upload the Linux packages (ELF, debug)
uses: actions/upload-artifact@v4
if: matrix.platform == 'ubuntu-20.04'
if: matrix.platform == 'ubuntu-22.04'
with:
name: linux-packages-raw-debug
# TODO: a better way to find just the binary
Expand Down

0 comments on commit cb0bedf

Please sign in to comment.