From 1aee793bf10e77d540ae73327801cf87f1d3644a Mon Sep 17 00:00:00 2001 From: Juraj Smiesko <34742917+kjvbrt@users.noreply.github.com> Date: Tue, 30 Jul 2024 15:18:06 +0200 Subject: [PATCH] Removing CentOs7 from build workflow --- .github/workflows/key4hep-build.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/key4hep-build.yaml b/.github/workflows/key4hep-build.yaml index 3f9007f..48960da 100644 --- a/.github/workflows/key4hep-build.yaml +++ b/.github/workflows/key4hep-build.yaml @@ -6,13 +6,19 @@ on: - main pull_request: workflow_dispatch: + schedule: + - cron: '23 4 * * *' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: build: strategy: matrix: build_type: ["release", "nightly"] - image: ["alma9", "ubuntu22", "centos7"] + image: ["alma9", "ubuntu22"] fail-fast: false runs-on: ubuntu-latest steps: @@ -20,4 +26,4 @@ jobs: - uses: key4hep/key4hep-actions/key4hep-build@main with: build_type: ${{ matrix.build_type }} - image: ${{ matrix.image }} + image: ${{ matrix.image }} \ No newline at end of file