Skip to content

Commit

Permalink
.github/workflows: Use Ubuntu 22.04
Browse files Browse the repository at this point in the history
This simplifies the testing matrix and allows us to test with the
minimum required LTTng version without needing to deal with the flaky
PPA setup on Ubuntu 20.04.

Signed-off-by: Darryl Abbate <[email protected]>
  • Loading branch information
darrylabbate authored and j-xiong committed Mar 21, 2024
1 parent b266f14 commit 951894c
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/pr-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ env:
sparse
valgrind
wget
APT_REPOS: >-
ppa:lttng/ppa
OFI_PROVIDER_FLAGS: >-
--enable-efa=$PWD/rdma-core/build
--enable-mrail
Expand All @@ -44,7 +42,6 @@ jobs:
strategy:
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
cc:
- gcc
Expand All @@ -53,7 +50,6 @@ jobs:
steps:
- name: Install dependencies (Linux)
run: |
sudo apt-add-repository ${{ env.APT_REPOS }}
sudo apt-get update
sudo apt-get install -y ${{ env.APT_PACKAGES }}
- uses: actions/checkout@v4
Expand All @@ -75,11 +71,10 @@ jobs:
name: ${{ matrix.os }}-${{ matrix.cc }}-config.log
path: config.log
hmem:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Install dependencies (Linux)
run: |
sudo apt-add-repository ${{ env.APT_REPOS }}
sudo apt-get update
sudo apt-get install -y ${{ env.APT_PACKAGES }}
- name: Install CUDA
Expand Down

0 comments on commit 951894c

Please sign in to comment.