Skip to content

Commit

Permalink
Explicitly install clang-9 in coverity workflow
Browse files Browse the repository at this point in the history
GitHub only has the last 3 clang versions installed by default in
the virtual environment and no longer installed clang-9 when they
added clang-12. Since we need clang-9 to build postgres with
llvm support we need to explicitly install the required package.

actions/runner-images#3381
  • Loading branch information
svenklemm committed May 24, 2021
1 parent 58b1eb8 commit 4eff5b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
MAKE_JOBS: 4
steps:
- name: Install Dependencies
run: sudo apt install flex bison
run: sudo apt install flex bison clang-9 llvm-9 llvm-9-dev llvm-9-tools

# this workflow depends on the cached postgres build from the main regression
# workflow since that workflow runs daily there should always be a cache hit
Expand Down

0 comments on commit 4eff5b1

Please sign in to comment.