Skip to content

Commit d4fb8c8

Browse files
authored
Add CBMC CI configuration (#709)
This commit adds a configuration file for the "CBMC Proofs" CI check. This is in preparation for adding some custom check-out steps later.
1 parent c60063c commit d4fb8c8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

cbmc-ci/ci-config.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Configuration for the "CBMC Proofs" CI
2+
#
3+
# What the CI should do, depending on what branch the pull request
4+
# targets. This is a list of branch names (or '*' as a wildcard that
5+
# matches all branches), with an associated action. Actions can be:
6+
#
7+
# name: run-proofs
8+
#
9+
# or
10+
#
11+
# name: skip
12+
# message: "A message to post to GitHub about why the branch was skipped"
13+
# status: <"success"|"failure">
14+
# (whether the GitHub status check should succeed or fail)
15+
#
16+
behaviors:
17+
18+
- target-branches:
19+
- '*'
20+
action:
21+
name: run-proofs
22+
23+
24+
checkout-script:
25+
- git submodule update --init –-checkout --recursive

0 commit comments

Comments
 (0)