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
10 changes: 2 additions & 8 deletions .github/workflows/ci_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,8 @@ jobs:
with:
fetch-depth: 0

- name: Load ccache
uses: actions/cache@v4
with:
path: /home/runner/.ccache
key: ccache-${{ runner.os }}-${{ github.workflow }}-${{ matrix.compiler }}-${{ github.ref }}-${{ github.run_id }}
restore-keys: |
ccache-${{ runner.os }}-${{ github.workflow }}-${{ matrix.compiler }}-${{ github.ref }}
ccache-${{ runner.os }}-${{ github.workflow }}-${{ matrix.compiler }}
- name: Setup cache
uses: seqan/actions/setup-actions-cache@main

- name: Increase ccache size
run: echo "CCACHE_MAXSIZE=300M" >> "${GITHUB_ENV}"
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Load ccache
uses: actions/cache@v4
with:
path: /home/runner/.ccache
key: ccache-${{ runner.os }}-${{ github.workflow }}-${{ matrix.compiler }}-${{ github.ref }}-${{ github.run_id }}
restore-keys: |
ccache-${{ runner.os }}-${{ github.workflow }}-${{ matrix.compiler }}-${{ github.ref }}
ccache-${{ runner.os }}-${{ github.workflow }}-${{ matrix.compiler }}
- name: Setup cache
uses: seqan/actions/setup-actions-cache@main

- name: Configure tests
run: |
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/ci_misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Load ccache
uses: actions/cache@v4
with:
path: /home/runner/.ccache
key: ccache-${{ runner.os }}-${{ github.workflow }}-${{ matrix.build }}-${{ matrix.compiler }}-${{ github.ref }}-${{ github.run_id }}
restore-keys: |
ccache-${{ runner.os }}-${{ github.workflow }}-${{ matrix.build }}-${{ matrix.compiler }}-${{ github.ref }}
ccache-${{ runner.os }}-${{ github.workflow }}-${{ matrix.build }}-${{ matrix.compiler }}
- name: Setup cache
uses: seqan/actions/setup-actions-cache@main

- name: Configure tests
run: |
Expand Down
11 changes: 6 additions & 5 deletions cmake/package-lock.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,16 @@ CPMDeclarePackage (doxygen_awesome
VERSION ${SEQAN3_DOXYGEN_AWESOME_VERSION}
GITHUB_REPOSITORY jothepro/doxygen-awesome-css
DOWNLOAD_ONLY TRUE
QUIET YES)
QUIET TRUE)
# seqan2
set (SEQAN3_SEQAN2_VERSION 339e44ea734359de8592d47cc7a7722bc7a040b4 CACHE STRING "" FORCE)
set (SEQAN3_SEQAN2_VERSION 2.5.0 CACHE STRING "" FORCE)
CPMDeclarePackage (seqan
NAME seqan
GIT_TAG ${SEQAN3_SEQAN2_VERSION} # main
VERSION ${SEQAN3_SEQAN2_VERSION}
GIT_TAG seqan-v${SEQAN3_SEQAN2_VERSION}
GITHUB_REPOSITORY seqan/seqan
DOWNLOAD_ONLY YES
QUIET YES)
DOWNLOAD_ONLY TRUE
QUIET TRUE)
# use_ccache
set (SEQAN3_USE_CCACHE_VERSION d2a54ef555b6fc2d496a4c9506dbeb7cf899ce37 CACHE STRING "" FORCE)
CPMDeclarePackage (use_ccache
Expand Down
Loading