summaryrefslogtreecommitdiffstats
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
authorJay Kwak <82421531+jkwak-work@users.noreply.github.com>2025-04-16 03:18:58 +0000
committerGitHub <noreply@github.com>2025-04-15 20:18:58 -0700
commit786f456c2558f07c5a396e25ecb635a3c5480313 (patch)
tree94d075a18166337ed0386cf6cbfd20f9c042b544 /.github/workflows/release.yml
parentd0b6a0b1ab49b5958015f31364c5ad73d9cd03eb (diff)
Use the latest Ubuntu version not specific old version (#6825)
* Use the latest Ubuntu version not specific old version
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index da5577c7c..617dd574c 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -27,13 +27,13 @@ jobs:
- {
os: linux,
platform: x86_64,
- runs-on: ubuntu-22.04,
+ runs-on: ubuntu-latest,
compiler: gcc,
}
- {
os: linux,
platform: aarch64,
- runs-on: ubuntu-22.04-arm,
+ runs-on: ubuntu-24.04-arm,
compiler: gcc,
}
- { os: windows, runs-on: windows-latest, compiler: cl }
@@ -56,6 +56,12 @@ jobs:
with:
submodules: "recursive"
fetch-depth: "0"
+ - name: Install dependencies
+ run: |
+ if [[ "${{ matrix.os }}" = "linux" ]]; then
+ sudo apt-get update
+ sudo apt-get install -y libx11-dev
+ fi
- name: Setup
uses: ./.github/actions/common-setup
with: