File tree Expand file tree Collapse file tree 4 files changed +20
-21
lines changed Expand file tree Collapse file tree 4 files changed +20
-21
lines changed Original file line number Diff line number Diff line change 18
18
19
19
- name : Check Python code formatting
20
20
run : |
21
- pip3 install --upgrade autopep8
22
- ./scripts/run-autopep8.sh
21
+ pip3 install --upgrade autopep8
22
+ ./scripts/run-autopep8.sh
23
23
24
24
clippy-check :
25
25
runs-on : ubuntu-20.04
@@ -30,17 +30,17 @@ jobs:
30
30
- name : Setup Kani Dependencies
31
31
uses : ./.github/actions/setup
32
32
with :
33
- os : ubuntu-20.04
33
+ os : ubuntu-20.04
34
34
35
- - name : " Install jq for parsing."
35
+ - name : ' Install jq for parsing.'
36
36
run : |
37
37
sudo apt-get install -y jq
38
38
39
- - name : " Run Clippy"
39
+ - name : ' Run Clippy'
40
40
run : |
41
41
cargo clippy --all -- -D warnings
42
42
43
- - name : " Print Clippy Statistics"
43
+ - name : ' Print Clippy Statistics'
44
44
run : |
45
45
rm .cargo/config.toml
46
46
(cargo clippy --all --message-format=json 2>/dev/null | \
Original file line number Diff line number Diff line change 25
25
- name : Setup Kani Dependencies
26
26
uses : ./.github/actions/setup
27
27
with :
28
- os : ${{ matrix.os }}
28
+ os : ${{ matrix.os }}
29
29
30
30
- name : Build Kani
31
31
run : cargo build
35
35
36
36
experimental-features-regression :
37
37
runs-on : ubuntu-20.04
38
- env :
38
+ env :
39
39
KANI_ENABLE_UNSOUND_EXPERIMENTS : 1
40
40
steps :
41
41
- name : Checkout Kani
44
44
- name : Setup Kani Dependencies
45
45
uses : ./.github/actions/setup
46
46
with :
47
- os : ubuntu-20.04
47
+ os : ubuntu-20.04
48
48
49
49
- name : Build Kani
50
50
run : cargo build
61
61
- name : Setup Kani Dependencies
62
62
uses : ./.github/actions/setup
63
63
with :
64
- os : ubuntu-20.04
64
+ os : ubuntu-20.04
65
65
66
66
- name : Build Kani
67
67
run : cargo build
80
80
- name : Setup Kani Dependencies
81
81
uses : ./.github/actions/setup
82
82
with :
83
- os : ubuntu-20.04
83
+ os : ubuntu-20.04
84
84
85
85
- name : Build Kani
86
86
run : cargo build
91
91
- name : Generate book runner report
92
92
run : cargo run -p bookrunner
93
93
env :
94
- DOC_RUST_LANG_ORG_CHANNEL : nightly
94
+ DOC_RUST_LANG_ORG_CHANNEL : nightly
95
95
96
96
- name : Print book runner text results
97
97
run : cat build/output/latest/html/bookrunner.txt
@@ -129,13 +129,13 @@ jobs:
129
129
- name : Setup Kani Dependencies
130
130
uses : ./.github/actions/setup
131
131
with :
132
- os : ${{ matrix.os }}
133
-
132
+ os : ${{ matrix.os }}
133
+
134
134
- name : Build release bundle
135
135
run : |
136
136
cargo run -p make-kani-release -- latest
137
137
cargo package -p kani-verifier
138
-
138
+
139
139
- name : Build container test
140
140
if : ${{ matrix.os == 'ubuntu-18.04' }}
141
141
run : |
Original file line number Diff line number Diff line change 76
76
- name : Setup Kani Dependencies
77
77
uses : ./.github/actions/setup
78
78
with :
79
- os : ${{ matrix.os }}
79
+ os : ${{ matrix.os }}
80
80
81
81
- name : Build release bundle
82
82
run : |
@@ -145,7 +145,7 @@ jobs:
145
145
org.opencontainers.image.licenses=Apache-2.0 OR MIT
146
146
147
147
- name : Check action and image is updated.
148
- uses : ${{ env.OWNER_LC }}/kani@${{ needs.Release.outputs.version }}
149
- with :
150
- command : |
151
- [[ "$(cargo kani --version)" == 'cargo-kani ${{ needs.Release.outputs.version }}' ]]
148
+ uses : ${{ env.OWNER_LC }}/kani@${{ needs.Release.outputs.version }}
149
+ with :
150
+ command : |
151
+ [[ "$(cargo kani --version)" == 'cargo-kani ${{ needs.Release.outputs.version }}' ]]
Original file line number Diff line number Diff line change 22
22
- bash
23
23
- ' -c'
24
24
- ' set -e; export HOME=/root USER=$(id -nu); source $HOME/.bashrc; ${{ inputs.command }}'
25
-
You can’t perform that action at this time.
0 commit comments