-
Notifications
You must be signed in to change notification settings - Fork 82
41 lines (35 loc) · 1.05 KB
/
ci_codechecker.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
36
37
38
39
40
41
# 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: CodeChecker
on:
schedule:
- cron: "0 2 * * WED"
workflow_dispatch:
concurrency:
group: codechecker-${{ github.ref }}
cancel-in-progress: true
env:
SEQAN3_NO_VERSION_CHECK: 1
TZ: Europe/Berlin
defaults:
run:
shell: bash -Eexuo pipefail {0}
jobs:
build:
name: CodeChecker
runs-on: ubuntu-latest
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch'
container:
image: ghcr.io/seqan/clang-19
volumes:
- /home/runner:/home/runner
steps:
- name: Run CodeChecker
uses: seqan/actions/codechecker@main
with:
configure_path: ../test/unit
deploy_host: ${{ secrets.DEPLOY_HOST }}
deploy_user: ${{ secrets.DEPLOY_USER }}
deploy_ssh_key: ${{ secrets.DEPLOY_SSH_KEY }}
deploy_path: ${{ secrets.DEPLOY_CODECHECKER_PATH }}