Skip to content

[CI] [Hotfix] Add an apt-update step to the ubuntu CI jobs. #5816

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/pull-request-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
# user input
DEBIAN_FRONTEND: noninteractive
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -yq gcc gdb g++ maven jq flex bison libxml2-utils ccache cmake
- name: Prepare ccache
uses: actions/cache@v2
Expand Down Expand Up @@ -70,6 +71,7 @@ jobs:
# user input
DEBIAN_FRONTEND: noninteractive
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -yq cmake ninja-build gcc g++ maven flex bison libxml2-utils dpkg-dev ccache doxygen
- name: Prepare ccache
uses: actions/cache@v2
Expand Down Expand Up @@ -232,6 +234,7 @@ jobs:
# user input
DEBIAN_FRONTEND: noninteractive
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -yq clang-format-7
- name: Check updated lines of code match clang-format-7 style
env:
Expand Down Expand Up @@ -313,7 +316,9 @@ jobs:
with:
submodules: recursive
- name: Fetch dependencies
run: sudo apt-get install --no-install-recommends -y g++ flex bison cmake ninja-build maven jq libxml2-utils dpkg-dev ccache
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y g++ flex bison cmake ninja-build maven jq libxml2-utils dpkg-dev ccache
- name: Prepare ccache
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -365,7 +370,9 @@ jobs:
with:
submodules: recursive
- name: Download test dependencies
run: sudo apt install openjdk-11-jdk-headless
run: |
sudo apt update
sudo apt install openjdk-11-jdk-headless
- name: Build docker image
run: docker build -t cbmc .
- name: Smoke test goto-cc
Expand Down