Skip to content

[INFRA] Add NEEDLE_TEST_BINARY_DIR #21

[INFRA] Add NEEDLE_TEST_BINARY_DIR

[INFRA] Add NEEDLE_TEST_BINARY_DIR #21

Workflow file for this run

# 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: Install GTest
run: apt-get update && apt-get install --yes libgtest-dev
- name: Build tests
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
rm bin/needle
- name: Run tests
working-directory: build
run: unshare -r -n ctest -j --output-on-failure --test-dir test
- name: Upload source package
if: matrix.compiler == 'gcc-14'
uses: actions/upload-artifact@v4
with:
name: source-package
path: package/needle-*.tar.xz*
retention-days: 1