Skip to content

Bump EndBug/add-and-commit from 9 to 10 #891

Bump EndBug/add-and-commit from 9 to 10

Bump EndBug/add-and-commit from 9 to 10 #891

Workflow file for this run

# SPDX-FileCopyrightText: 2006-2025, Knut Reinert & Freie Universität Berlin
# SPDX-FileCopyrightText: 2016-2025, Knut Reinert & MPI für molekulare Genetik
# SPDX-License-Identifier: CC0-1.0
name: Utility
on:
push:
branches:
- 'main'
pull_request:
types:
- unlabeled
workflow_dispatch:
concurrency:
group: util-${{ 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:
name: ${{ matrix.compiler }}
runs-on: ubuntu-latest
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
strategy:
fail-fast: false
matrix:
compiler: ["clang-latest", "gcc-latest"]
container:
image: ghcr.io/seqan/${{ matrix.compiler }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Configure util
run: |
mkdir build && cd build
cmake ../util -DCMAKE_BUILD_TYPE=Release
- name: Build util
working-directory: build
run: |
ccache -z
make -k
ccache -sv