[INFRA] Add fallback for cmake < 3.30 #25
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2006-2024 Knut Reinert & Freie Universität Berlin | |
# SPDX-FileCopyrightText: 2016-2024 Knut Reinert & MPI für molekulare Genetik | |
# SPDX-License-Identifier: CC0-1.0 | |
name: Install | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
types: | |
- unlabeled | |
workflow_dispatch: | |
concurrency: | |
group: install-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: ${{ github.event_name != 'push' }} | |
env: | |
TZ: Europe/Berlin | |
defaults: | |
run: | |
shell: bash -Eexuo pipefail {0} | |
jobs: | |
build: | |
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-18", "gcc-14"] | |
container: | |
image: ghcr.io/seqan/${{ matrix.compiler }} | |
volumes: | |
- /home/runner:/home/runner | |
options: --privileged | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: needle | |
- name: Remove ccache | |
run: apt-get purge --yes ccache | |
- name: Create source package | |
run: | | |
mkdir create_source_package && cd create_source_package | |
cmake ../needle -DCMAKE_BUILD_TYPE=Release \ | |
-DNEEDLE_PACKAGE=ON \ | |
-DNEEDLE_TEST=OFF | |
make package_source | |
mkdir ../source_package | |
tar xf needle-*.tar.xz -C ../source_package --strip-components=1 | |
- name: Install from source package | |
run: | | |
mkdir build_from_source_package install && cd build_from_source_package | |
unshare -r -n cmake ../source_package -DCMAKE_BUILD_TYPE=Release \ | |
-DCMAKE_INSTALL_PREFIX=${GITHUB_WORKSPACE}/install \ | |
-DNEEDLE_TEST=OFF | |
unshare -r -n make install | |
- name: Check installed executable | |
run: ${GITHUB_WORKSPACE}/install/bin/needle --help | |
# Clang builds with libc++, but GTest is built with libstdc++ | |
- name: Install GTest | |
if: contains(matrix.compiler, 'gcc') | |
run: apt-get update && apt-get install --yes libgtest-dev | |
- name: Build tests | |
if: contains(matrix.compiler, 'gcc') | |
run: | | |
mkdir build && cd build | |
unshare -r -n cmake ../source_package -DCMAKE_BUILD_TYPE=Release \ | |
-DCPM_USE_LOCAL_PACKAGES=ON \ | |
-DNEEDLE_TEST_BINARY_DIR=${GITHUB_WORKSPACE}/install/bin \ | |
-DNEEDLE_TEST=ON | |
unshare -r -n make -k tests | |
test -n $(find . -type f -executable -name "needle") # needle binary should exist | |
rm bin/needle | |
test -z $(find . -type f -executable -name "needle") # needle binary should not exist | |
- name: Run tests | |
if: contains(matrix.compiler, 'gcc') | |
working-directory: build | |
run: | | |
unshare -r -n ctest -j --output-on-failure --test-dir test | |
test -z $(find . -type f -executable -name "needle") # needle binary should not exist | |
- name: Upload source package | |
if: contains(matrix.compiler, 'gcc') | |
uses: actions/upload-artifact@v4 | |
with: | |
name: needle-source-package | |
path: create_source_package/needle-*.tar.xz* | |
retention-days: 1 |