File tree Expand file tree Collapse file tree 4 files changed +16
-19
lines changed Expand file tree Collapse file tree 4 files changed +16
-19
lines changed Original file line number Diff line number Diff line change 16
16
run : ./scripts/setup/${{ inputs.os }}/install_deps.sh
17
17
shell : bash
18
18
19
- - name : Install CBMC
20
- run : ./scripts/setup/${{ inputs.os }}/install_cbmc.sh
21
- shell : bash
22
- if : ${{format('{0}', inputs.install_cbmc) != 'false'}}
23
-
24
- - name : Install cbmc-viewer
25
- run : ./scripts/setup/${{ inputs.os }}/install_viewer.sh
26
- shell : bash
27
-
28
- - name : Install Kissat
29
- run : ./scripts/setup/install_kissat.sh
30
- shell : bash
31
-
32
19
- name : Install Rust toolchain
33
20
run : ./scripts/setup/install_rustup.sh
34
21
shell : bash
Original file line number Diff line number Diff line change @@ -29,9 +29,6 @@ git clone https://github.com/model-checking/kani.git
29
29
cd kani
30
30
git submodule update --init
31
31
./scripts/setup/ubuntu/install_deps.sh
32
- ./scripts/setup/ubuntu/install_cbmc.sh
33
- ./scripts/setup/ubuntu/install_viewer.sh
34
- ./scripts/setup/install_kissat.sh
35
32
# If you haven't already (or from https://rustup.rs/):
36
33
./scripts/setup/install_rustup.sh
37
34
source $HOME/.cargo/env
@@ -47,9 +44,6 @@ git clone https://github.com/model-checking/kani.git
47
44
cd kani
48
45
git submodule update --init
49
46
./scripts/setup/macos/install_deps.sh
50
- ./scripts/setup/macos/install_cbmc.sh
51
- ./scripts/setup/macos/install_viewer.sh
52
- ./scripts/setup/install_kissat.sh
53
47
# If you haven't already (or from https://rustup.rs/):
54
48
./scripts/setup/install_rustup.sh
55
49
source $HOME/.cargo/env
Original file line number Diff line number Diff line change @@ -18,3 +18,11 @@ PYTHON_DEPS=(
18
18
)
19
19
20
20
python3 -m pip install " ${PYTHON_DEPS[@]} "
21
+
22
+ # Get the directory containing this script
23
+ SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " > /dev/null 2>&1 && pwd ) "
24
+
25
+ ${SCRIPT_DIR} /install_cbmc.sh
26
+ ${SCRIPT_DIR} /install_viewer.sh
27
+ # The Kissat installation script is platform-independent, so is placed one level up
28
+ ${SCRIPT_DIR} /../install_kissat.sh
Original file line number Diff line number Diff line change @@ -52,3 +52,11 @@ PYTHON_DEPS=(
52
52
)
53
53
54
54
python3 -m pip install " ${PYTHON_DEPS[@]} "
55
+
56
+ # Get the directory containing this script
57
+ SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " > /dev/null 2>&1 && pwd ) "
58
+
59
+ ${SCRIPT_DIR} /install_cbmc.sh
60
+ ${SCRIPT_DIR} /install_viewer.sh
61
+ # The Kissat installation script is platform-independent, so is placed one level up
62
+ ${SCRIPT_DIR} /../install_kissat.sh
You can’t perform that action at this time.
0 commit comments