Skip to content

Commit

Permalink
quiet accept for apt-get
Browse files Browse the repository at this point in the history
Signed-off-by: Max SCHMELLER <[email protected]>
  • Loading branch information
mojomex committed Dec 4, 2024
1 parent 38246e4 commit 515b040
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-and-test-differential.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ jobs:

- name: Install Clang-15
run: |
sudo apt-get update
sudo apt-get install --install-recommends clang-15 clang-tidy-15 clangd-15
sudo apt-get install clang-15-doc wasi-libc llvm-15-doc
sudo apt-get install libomp-15-dev libomp-15-doc # For OpenMP support in Clang
sudo apt install libstdc++-12-dev
sudo apt-get -y -q update
sudo apt-get -y -q install --install-recommends clang-15 clang-tidy-15 clangd-15
sudo apt-get -y -q install clang-15-doc wasi-libc llvm-15-doc

Check warning on line 89 in .github/workflows/build-and-test-differential.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (wasi)
sudo apt-get -y -q install libomp-15-dev libomp-15-doc # For OpenMP support in Clang
sudo apt-get -y -q install libstdc++-12-dev
echo "CC=/usr/bin/clang-15" >> $GITHUB_ENV
echo "CXX=/usr/bin/clang++-15" >> $GITHUB_ENV
Expand All @@ -101,7 +101,7 @@ jobs:
run: |
export BASENAME="infer-linux-x86_64-v${VERSION}"
export FILENAME="${BASENAME}.tar.xz"
sudo apt-get install curl tar
sudo apt-get -y -q install curl tar
curl -sSLO "https://github.com/facebook/infer/releases/download/v${VERSION}/${FILENAME}"
tar -xf "$FILENAME"
rm "$FILENAME"
Expand Down

0 comments on commit 515b040

Please sign in to comment.