summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.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/ci.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/ci.yml')
-rw-r--r--.github/workflows/ci.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a8526dcaf..46db88275 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -32,7 +32,7 @@ jobs:
- { os: macos, compiler: gcc }
- { os: macos, compiler: cl }
include:
- - { os: linux, runs-on: ubuntu-20.04 }
+ - { os: linux, runs-on: ubuntu-latest }
- { os: macos, runs-on: macos-latest }
- { os: windows, runs-on: windows-latest }
# Warnings are treated as errors by default.
@@ -58,7 +58,7 @@ jobs:
platform: aarch64
test-category: smoke
full-gpu-tests: false
- runs-on: ubuntu-22.04-arm
+ runs-on: ubuntu-24.04-arm
has-gpu: false
build-llvm: false
# Self-hosted full gpu build
@@ -105,6 +105,12 @@ jobs:
echo "Only documentation files changed, skipping remaining steps"
echo "should-run=false" >> $GITHUB_OUTPUT
fi
+ - name: Install dependencies
+ run: |
+ if [[ "${{ matrix.os }}" = "linux" ]]; then
+ sudo apt-get update
+ sudo apt-get install -y libx11-dev
+ fi
- name: Setup
if: steps.filter.outputs.should-run == 'true'
uses: ./.github/actions/common-setup