Try with clang instead of gcc

This commit is contained in:
Laurent Rineau 2019-09-20 13:59:01 +02:00
parent 61b5d167ba
commit a8d3f13def
1 changed files with 1 additions and 1 deletions

View File

@ -14,4 +14,4 @@ jobs:
- name: install dependencies
run: sudo apt-get install -y libboost-dev libboost-program-options-dev libmpfr-dev libeigen3-dev
- name: configure all
run: mkdir build && cd build && cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON ..
run: mkdir build && cd build && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON ..