Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ jobs:
export DEBIAN_FRONTEND=noninteractive
export TZ=Etc/UTC
apt-get update
apt-get install build-essential cmake clang++ git -y
apt-get install build-essential cmake git -y
apt-get install software-properties-common -y
add-apt-repository ppa:joseluisblancoc/mrpt -y
apt-get install libmrpt-dev -y
apt-get install clang -y
apt-get install -y clang-18
- checkout
- run:
name: "Pull Submodules"
Expand All @@ -78,8 +78,8 @@ jobs:
name: Generate cmake files
command: cmake -H. -Bbuild
environment:
CC: /usr/bin/clang
CXX: /usr/bin/clang++
CC: /usr/bin/clang-18
CXX: /usr/bin/clang++-18
- run: make -C build
- run: make CTEST_OUTPUT_ON_FAILURE=1 test -C build
workflows:
Expand Down