Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-liburing-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
liburing-version: [ "2.3", "2.6" ]
liburing-version: [ "2.3", "2.14" ]

steps:
- name: Checkout Repository and Submodules
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- "**.md"

env:
LIBURING_VERSION: "2.6"
LIBURING_VERSION: "2.14"

jobs:
build-and-test:
Expand Down Expand Up @@ -42,6 +42,16 @@ jobs:
git checkout liburing-${{ env.LIBURING_VERSION }}
cd ../../

# GCC 15 Regression https://gcc.gnu.org/bugzilla/show_bug.cgi?id=124584
- name: Install GCC 14
if: matrix.compiler.cc == 'gcc'
run: |
sudo apt-get update
sudo apt-get install -y gcc-14 g++-14
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 100
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 100
gcc --version

- name: Configure CMake
run: |
COMPILER=$(${{matrix.compiler.cc}} --version | head -n 1)
Expand Down
Loading