File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 16
16
# user input
17
17
DEBIAN_FRONTEND : noninteractive
18
18
run : |
19
+ sudo apt-get update
19
20
sudo apt-get install --no-install-recommends -yq gcc gdb g++ maven jq flex bison libxml2-utils ccache cmake
20
21
- name : Prepare ccache
21
22
uses : actions/cache@v2
70
71
# user input
71
72
DEBIAN_FRONTEND : noninteractive
72
73
run : |
74
+ sudo apt-get update
73
75
sudo apt-get install --no-install-recommends -yq cmake ninja-build gcc g++ maven flex bison libxml2-utils dpkg-dev ccache doxygen
74
76
- name : Prepare ccache
75
77
uses : actions/cache@v2
@@ -232,6 +234,7 @@ jobs:
232
234
# user input
233
235
DEBIAN_FRONTEND : noninteractive
234
236
run : |
237
+ sudo apt-get update
235
238
sudo apt-get install --no-install-recommends -yq clang-format-7
236
239
- name : Check updated lines of code match clang-format-7 style
237
240
env :
@@ -313,7 +316,9 @@ jobs:
313
316
with :
314
317
submodules : recursive
315
318
- name : Fetch dependencies
316
- run : sudo apt-get install --no-install-recommends -y g++ flex bison cmake ninja-build maven jq libxml2-utils dpkg-dev ccache
319
+ run : |
320
+ sudo apt-get update
321
+ sudo apt-get install --no-install-recommends -y g++ flex bison cmake ninja-build maven jq libxml2-utils dpkg-dev ccache
317
322
- name : Prepare ccache
318
323
uses : actions/cache@v2
319
324
with :
@@ -365,7 +370,9 @@ jobs:
365
370
with :
366
371
submodules : recursive
367
372
- name : Download test dependencies
368
- run : sudo apt install openjdk-11-jdk-headless
373
+ run : |
374
+ sudo apt update
375
+ sudo apt install openjdk-11-jdk-headless
369
376
- name : Build docker image
370
377
run : docker build -t cbmc .
371
378
- name : Smoke test goto-cc
You can’t perform that action at this time.
0 commit comments