Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
offa committed Sep 13, 2024
1 parent d42e1f2 commit 2a9c829
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions script/ci_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@

set -ex

if [[ "${CXX}" == clang* ]]
then
export CXXFLAGS="-stdlib=libc++"
fi

# Install dependencies
apt-get update
apt-get install -y --no-install-recommends \
Expand All @@ -16,6 +11,11 @@ apt-get install -y --no-install-recommends \
libgl1-mesa-dev \
libusb-1.0-0-dev

if [[ "${CXX}" == clang* ]]
then
export CXXFLAGS="-stdlib=libc++"
fi

git clone --depth=1 --branch=v1.15.0 https://github.com/google/googletest.git
mkdir googletest/build
cd googletest/build
Expand Down

0 comments on commit 2a9c829

Please sign in to comment.