Skip to content

Commit 091f45e

Browse files
committed
Fix CI
1 parent 9ab2345 commit 091f45e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci-pr-validation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
uses: actions/checkout@v3
7575

7676
- name: Install OpenSSL
77-
run: apt install libssl-dev
77+
run: sudo apt install libssl-dev
7878

7979
- name: Install dependencies
8080
run: ./build-support/install-dependencies.sh

build-support/install-dependencies.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ if [[ ! -f $DIR/.done ]]; then
5050
download https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/boost_${BOOST_VERSION_}.tar.gz
5151
mkdir -p $PREFIX/include
5252
pushd $DIR
53-
./bootstrap.sh --with-libraries=python --with-python=python3 --prefix=$PREFIX
54-
./b2 address-model=64 cxxflags="-fPIC" link=static threading=multi -j8 install
53+
./bootstrap.sh --with-libraries=python --with-python=python3 --prefix=$PREFIX 2>&1 >/dev/null
54+
./b2 address-model=64 cxxflags="-fPIC" link=static threading=multi -j8 install 2>&1 >/dev/null
5555
touch .done
5656
popd
5757
else

0 commit comments

Comments
 (0)