-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (32 loc) · 938 Bytes
/
cron_daily.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# SPDX-FileCopyrightText: 2006-2023, Knut Reinert & Freie Universität Berlin
# SPDX-FileCopyrightText: 2016-2023, Knut Reinert & MPI für molekulare Genetik
# SPDX-License-Identifier: CC0-1.0
name: "Daily CI"
on:
schedule:
- cron: '0 8 * * *'
workflow_dispatch:
env:
TZ: Europe/Berlin
concurrency:
group: daily
cancel-in-progress: true
jobs:
build:
name: ${{ matrix.os }}-${{ matrix.compiler }}
runs-on: ${{ matrix.os }}
timeout-minutes: 120
strategy:
fail-fast: false
matrix:
include:
- {os: ubuntu-22.04, compiler: cpm_update_version}
- {os: ubuntu-22.04, compiler: check_tag-open_issue}
steps:
- name: Standard IV-project testing
uses: iv-project/[email protected]
with:
compiler: ${{ matrix.compiler }}
threads: 2
cmake_flags: ${{ matrix.cmake_flags }}
github_token: ${{ secrets.GITHUB_TOKEN }}