-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (46 loc) · 1.58 KB
/
linux-build-test-deploy.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
42
43
44
45
46
47
48
49
50
51
52
name: Build-Test-Deploy
on:
push:
pull_request:
types: [opened, synchronize, reopened]
merge_group:
workflow_dispatch:
inputs:
message:
description: 'Summarize the contents since the last version'
required: true
default: 'Auto-generated release'
permissions: write-all
concurrency:
group: deploy-${{ github.head_ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Build
uses: ./.github/actions/create-archive
test-benchexec:
strategy:
matrix:
tool: [bubaak, cbmc, coveriteam-verifier-algo-selection, coveriteam-verifier-parallel-portfolio, cpa-lockator, cpachecker, cseq, dartagnan, deagle, divine, ebf, esbmc-incr, esbmc-kind, goblint, graves-par, graves, infer, lazycseq, lf-checker, pesco, pichecker, symbiotic, theta, uautomizer, ugemcutter, utaipan]
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Run benchexec
uses: ./.github/actions/benchexec-test
with:
tool: ${{ matrix.tool }}
ssh-key: ${{ secrets.DEPLOY_KEY }}
collect-results:
needs: test-benchexec
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Generate report
uses: ./.github/actions/benchexec-report