diff --git a/.github/workflows/build-and-test-liburing-versions.yml b/.github/workflows/build-and-test-liburing-versions.yml index 47d3cba2..1680ebac 100644 --- a/.github/workflows/build-and-test-liburing-versions.yml +++ b/.github/workflows/build-and-test-liburing-versions.yml @@ -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 diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 50da10f5..03ac600f 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -13,7 +13,7 @@ on: - "**.md" env: - LIBURING_VERSION: "2.6" + LIBURING_VERSION: "2.14" jobs: build-and-test: @@ -26,7 +26,7 @@ jobs: compiler: - { cc: clang, cxx: clang++ } - { cc: gcc, cxx: g++ } - build-type: [ Debug, Release ] + build-type: [ Debug, RelWithDebInfo ] sanitizer: [ tsan, asan ] steps: @@ -72,6 +72,6 @@ jobs: - name: Run Benchmarks timeout-minutes: 5 - if: matrix.build-type == 'Release' + if: matrix.build-type == 'RelWithDebInfo' working-directory: ${{github.workspace}} run: bash scripts/run-bench.sh -t 60 build/benchmarks