Sharg API-Stability #107
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: Sharg API-Stability | |
on: | |
# Will always run on the default branch | |
schedule: | |
- cron: "0 1 * * SUN" | |
# Enables a manual trigger, may run on any branch | |
workflow_dispatch: | |
concurrency: | |
group: api-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
CMAKE_VERSION: 3.16.9 | |
SHARG_NO_VERSION_CHECK: 1 | |
TZ: Europe/Berlin | |
ISSUE: 146 # Issue number to use for reporting failures | |
defaults: | |
run: | |
shell: bash -exo pipefail {0} | |
jobs: | |
build: | |
name: API-Stability gcc${{ matrix.compiler }} | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 300 | |
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: [11, 12, 13] | |
steps: | |
- name: Checkout Sharg | |
uses: actions/checkout@v4 | |
with: | |
path: sharg | |
fetch-depth: 1 | |
submodules: true | |
- name: Setup toolchain | |
uses: seqan/actions/setup-toolchain@main | |
with: | |
compiler: gcc-${{ matrix.compiler }} | |
ccache_size: 75M | |
- name: Install CMake | |
uses: seqan/actions/setup-cmake@main | |
with: | |
cmake: 3.16.9 | |
- name: Configure tests | |
run: | | |
mkdir sharg-build | |
cd sharg-build | |
cmake ../sharg/test/api_stability -DCMAKE_BUILD_TYPE=Release | |
- name: Build tests | |
run: | | |
cd sharg-build | |
CMAKE_BUILD_PARALLEL_LEVEL=2 cmake --build . -- -k 2>&1 | tee build.log | |
- name: Setup Python | |
if: ${{ failure() }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Process Log | |
if: ${{ failure() }} | |
run: | | |
FILE="seqan3/.github/ISSUE_TEMPLATE/cron_comment_template.md" | |
python3 seqan3/.github/workflows/scripts/process_compiler_error_log.py sharg-build/build.log >> $FILE | |
- name: Create comment body | |
if: ${{ failure() }} | |
id: comment-body | |
run: | | |
FILE="sharg/.github/ISSUE_TEMPLATE/cron_comment_template.md" | |
URL="$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" | |
sed -i "s@{{ build }}@${{ matrix.build }}@" $FILE | |
sed -i "s@{{ compiler }}@${{ matrix.compiler }}@" $FILE | |
sed -i "s@{{ url }}@$URL@" $FILE | |
echo "body<<EOF" >> $GITHUB_OUTPUT | |
cat $FILE >> $GITHUB_OUTPUT | |
echo "EOF" >> $GITHUB_OUTPUT | |
- name: Reopen issue | |
if: ${{ failure() }} | |
uses: octokit/[email protected] | |
with: | |
route: PATCH /repos/{owner}/{repo}/issues/{issue_number} | |
owner: ${{ github.repository_owner }} | |
repo: sharg-parser | |
issue_number: ${{ env.ISSUE }} | |
state: "open" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create comment | |
if: ${{ failure() }} | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
issue-number: ${{ env.ISSUE }} | |
body: ${{ steps.comment-body.outputs.body }} |