Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Ubuntu to 22.04 #71

Merged
merged 3 commits into from
Dec 20, 2024
Merged
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
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
Loading