From 0ed98788e0955e697b21aaa36c49b42fc29ad26e Mon Sep 17 00:00:00 2001 From: "seqan-actions[bot]" Date: Sat, 15 Aug 2026 14:46:33 +0200 Subject: [PATCH 1/4] chore(deps): update CPM packages --- cmake/package-lock.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/package-lock.cmake b/cmake/package-lock.cmake index a081a56b..b75b7eaf 100644 --- a/cmake/package-lock.cmake +++ b/cmake/package-lock.cmake @@ -8,7 +8,7 @@ # cmake-format: off # hibf -set (CHOPPER_HIBF_VERSION f8a4034717a3411931fc0de76c2a6d277aa8303a CACHE STRING "") +set (CHOPPER_HIBF_VERSION 160a80994dd822fc70f01ae270bf3bde6f0ba458 CACHE STRING "") CPMDeclarePackage (hibf NAME hibf GIT_TAG ${CHOPPER_HIBF_VERSION} # main @@ -40,7 +40,7 @@ CPMDeclarePackage (seqan3 OPTIONS "INSTALL_SEQAN3 OFF" "CMAKE_MESSAGE_LOG_LEVEL WARNING" ) # googletest -set (CHOPPER_GOOGLETEST_VERSION 1.17.0 CACHE STRING "") +set (CHOPPER_GOOGLETEST_VERSION 1.18.0 CACHE STRING "") CPMDeclarePackage (googletest NAME GTest VERSION ${CHOPPER_GOOGLETEST_VERSION} From df6d36829c755c86f22398a8c319a40ce0f26692 Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Mon, 17 Aug 2026 12:45:49 +0200 Subject: [PATCH 2/4] test(debug): ci --- .github/workflows/ci_documentation.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci_documentation.yml b/.github/workflows/ci_documentation.yml index b370cce0..52d69187 100644 --- a/.github/workflows/ci_documentation.yml +++ b/.github/workflows/ci_documentation.yml @@ -27,6 +27,9 @@ jobs: runs-on: ubuntu-latest if: ( github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint' ) && github.event.action != 'closed' steps: + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 + - name: Checkout if: github.event_name != 'pull_request_target' uses: actions/checkout@v7 From ecb1033578203c96012d69a410df82251796d681 Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Mon, 17 Aug 2026 12:48:56 +0200 Subject: [PATCH 3/4] test(debug): ci --- .github/workflows/ci_linux.yml | 43 ++++------------------------------ 1 file changed, 5 insertions(+), 38 deletions(-) diff --git a/.github/workflows/ci_linux.yml b/.github/workflows/ci_linux.yml index 5d33395c..e089fb13 100644 --- a/.github/workflows/ci_linux.yml +++ b/.github/workflows/ci_linux.yml @@ -1,20 +1,17 @@ -name: Linux +name: Debug on: push: branches: - 'main' pull_request: - types: - - unlabeled workflow_dispatch: concurrency: - group: linux-${{ github.event.pull_request.number || github.ref }} + group: debug-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: ${{ github.event_name != 'push' }} env: - SHARG_NO_VERSION_CHECK: 1 TZ: Europe/Berlin defaults: @@ -23,38 +20,8 @@ defaults: jobs: build: + name: Debug runs-on: ubuntu-latest - name: ${{ matrix.compiler }} - if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint' - strategy: - fail-fast: false - matrix: - compiler: ["clang-latest", "clang-second-latest", "clang-third-latest", "gcc-latest", "gcc-second-latest", "gcc-third-latest", "intel"] - container: - image: ghcr.io/seqan/${{ matrix.compiler }} - volumes: - - /home/runner:/home/runner steps: - - name: Checkout - uses: actions/checkout@v7 - - - name: Setup cache - uses: seqan/actions/setup-actions-cache@main - - - name: Configure tests - run: | - mkdir build && cd build - cmake .. -DCMAKE_BUILD_TYPE=Release - make gtest_main - - - name: Build tests - working-directory: build - run: | - ccache -z - make -k api_test cli_test display_layout measure_hyperloglog - ccache -svvx - - - name: Run tests - working-directory: build - run: ctest . -j --output-on-failure - + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 From ee541db68e04eba1e1ccf3fbdf1d127f4c4820ae Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Mon, 17 Aug 2026 12:54:51 +0200 Subject: [PATCH 4/4] test(debug): ci --- .github/workflows/ci_linux.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci_linux.yml b/.github/workflows/ci_linux.yml index e089fb13..951513f2 100644 --- a/.github/workflows/ci_linux.yml +++ b/.github/workflows/ci_linux.yml @@ -23,5 +23,8 @@ jobs: name: Debug runs-on: ubuntu-latest steps: + - name: Foo + run: command -v g++-14 || true + - name: Setup tmate session uses: mxschmitt/action-tmate@v3