Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into new_docs
Browse files Browse the repository at this point in the history
  • Loading branch information
costashatz committed Feb 1, 2024
2 parents 1031b84 + 0526da6 commit 10cf71f
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 31 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]
os: [ubuntu-22.04]
build_type: [Release]
build_python: [ON]
compiler: [gcc, clang]
magnum_gui: [ON, OFF]
dart_tag: ["v6.12.1"]
dart_tag: ["v6.13.1"]
env:
COMPILER: ${{ matrix.compiler }}
BUILD_TYPE: ${{ matrix.build_type }}
Expand Down Expand Up @@ -89,9 +89,9 @@ jobs:
fi
cd ${{github.workspace}}
if [ "$BUILD_PYTHON" = "ON" ]; then
./waf configure --python --prefix=/usr --dart=~/.dart_install ;
./waf configure --tests --python --prefix=/usr --dart=~/.dart_install ;
else
./waf configure --prefix=/usr --dart=~/.dart_install ;
./waf configure --tests --prefix=/usr --dart=~/.dart_install ;
fi
./waf
- name: Run tests
Expand Down
22 changes: 11 additions & 11 deletions ci/install_dart_latest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ if [ "$COMPILER" = "clang" ]; then
export CC=/usr/bin/clang && export CXX=/usr/bin/clang++
fi

# Build pybind11 if needed; for clang we need at least v2.5.0
if [ "$COMPILER" = "clang" ]; then
git clone https://github.com/pybind/pybind11 -b 'v2.5.0' --single-branch --depth 1
cd pybind11
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DPYBIND11_TEST=OFF
make -j4
sudo make install
cd ../..
fi
# # Build pybind11 if needed; for clang we need at least v2.5.0
# if [ "$COMPILER" = "clang" ]; then
# git clone https://github.com/pybind/pybind11 -b 'v2.5.0' --single-branch --depth 1
# cd pybind11
# mkdir build && cd build
# cmake .. -DCMAKE_BUILD_TYPE=Release -DPYBIND11_TEST=OFF
# make -j4
# sudo make install
# cd ../..
# fi

git clone https://github.com/dartsim/dart.git
cd dart
Expand All @@ -45,7 +45,7 @@ sudo ldconfig
cd $CI_HOME

# Hack for dartpy installation
python_file=/usr/lib/python3/dist-packages/dartpy.cpython-38-x86_64-linux-gnu.so
python_file=/usr/lib/python3/dist-packages/dartpy.cpython-310-x86_64-linux-gnu.so
if [ -f "$python_file" ]; then
cp $python_file ~/.dart_install/$python_dist_dir
fi
10 changes: 5 additions & 5 deletions ci/install_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ sudo apt-get -qq update
sudo apt-get -y install software-properties-common mlocate
sudo apt-add-repository -y ppa:dartsim/ppa
sudo apt-get -qq update
sudo apt-get install -y --no-install-recommends build-essential cmake pkg-config git libeigen3-dev libccd-dev libfcl-dev libboost-regex-dev libboost-system-dev libbullet-dev libode-dev liboctomap-dev libtinyxml-dev libtinyxml2-dev liburdfdom-dev liburdfdom-headers-dev python3-pip python3-numpy libpython3-dev libxi-dev libxmu-dev freeglut3-dev libopenscenegraph-dev libassimp-dev
sudo apt-get install -y --no-install-recommends build-essential cmake pkg-config git libeigen3-dev libccd-dev libfcl-dev libboost-regex-dev libboost-system-dev libboost-filesystem-dev libboost-test-dev libbullet-dev libode-dev liboctomap-dev libtinyxml-dev libtinyxml2-dev liburdfdom-dev liburdfdom-headers-dev python3-pip python3-numpy libpython3-dev libxi-dev libxmu-dev freeglut3-dev libopenscenegraph-dev libassimp-dev libfmt-dev pybind11-dev

sudo ln -s /usr/bin/python3 /usr/bin/python

# if gcc, we can safely use the official package, for clang we need to build it
if [ "$COMPILER" = "gcc" ]; then
sudo apt-get install -y --no-install-recommends pybind11-dev
fi
# # if gcc, we can safely use the official package, for clang we need to build it
# if [ "$COMPILER" = "gcc" ]; then
# sudo apt-get install -y --no-install-recommends pybind11-dev
# fi

if [ "$MAGNUM_GUI" = "ON" ]; then
sudo apt-get install -y --no-install-recommends libopenal-dev libglfw3-dev libsdl2-dev libdevil-dev libpng-dev libfaad-dev libfreetype6-dev libglm-dev
Expand Down
20 changes: 10 additions & 10 deletions ci/install_pybind11.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Build pybind11 if needed; for clang we need at least v2.5.0
if [ "$COMPILER" = "clang" ]; then
git clone https://github.com/pybind/pybind11 -b 'v2.5.0' --single-branch --depth 1
cd pybind11
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DPYBIND11_TEST=OFF
make -j4
sudo make install
cd ../..
fi
# # Build pybind11 if needed; for clang we need at least v2.5.0
# if [ "$COMPILER" = "clang" ]; then
# git clone https://github.com/pybind/pybind11 -b 'v2.5.0' --single-branch --depth 1
# cd pybind11
# mkdir build && cd build
# cmake .. -DCMAKE_BUILD_TYPE=Release -DPYBIND11_TEST=OFF
# make -j4
# sudo make install
# cd ../..
# fi
2 changes: 1 addition & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def configure_robot_dart(conf):
conf.check(features='cxx cxxprogram', lib=['pthread'], uselib_store='PTHREAD')
conf.check_eigen(required=True, min_version=(3,2,92))
conf.check_dart(required=True)
if conf.env['DART_REQUIRES_BOOST']:
if conf.env['DART_REQUIRES_BOOST'] or conf.options.tests:
conf.check_boost(lib='regex system filesystem unit_test_framework', min_version='1.58')
conf.check_corrade(components='Utility PluginManager', required=False)
conf.env['magnum_dep_libs'] = 'MeshTools Primitives Shaders SceneGraph GlfwApplication Text MagnumFont'
Expand Down

0 comments on commit 10cf71f

Please sign in to comment.