Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Stanea <[email protected]>
  • Loading branch information
Adrian-Stanea committed Oct 17, 2024
1 parent 2b35897 commit 84f56eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CI/ubuntu/install_deps
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ WORKDIR=$(pwd)

set -ex

$PIP --version
which $PIP

$PYTHON --version
which $PYTHON

install_deps() {
echo "# Installing dependencies"

Expand Down Expand Up @@ -85,7 +91,7 @@ build_glog() {
-DCMAKE_PREFIX_PATH=/usr
make
sudo make install
sudo "$PIP" install --upgrade pip stdeb argparse
"$PIP" install --upgrade pip stdeb argparse
cd "${WORKDIR}"
}

Expand Down
2 changes: 1 addition & 1 deletion CI/ubuntu/make_linux
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ handle_default() {
-DENABLE_TOOLS=ON \
-DPYTHON_EXECUTABLE:FILEPATH="$(${PYTHON} -c 'import os, sys; print(os.path.dirname(sys.executable))')/${PYTHON}" \
make
sudo python3 setup.py --command-packages=stdeb.command sdist_dsc
sudo "$PYTHON" setup.py --command-packages=stdeb.command sdist_dsc
cd "$(find . -type d -name "debian" | head -n 1)"
sudo env DEB_BUILD_OPTIONS=nocheck debuild -us -uc
cp ../../*.deb ${WORKDIR}/build/
Expand Down

0 comments on commit 84f56eb

Please sign in to comment.