mirror of https://github.com/CGAL/cgal
16 lines
415 B
YAML
16 lines
415 B
YAML
name: CMake all CGAL
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2.0.0
|
|
- 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 && CXX=clang++ cmake -DWITH_examples=ON -DWITH_tests=ON -DWITH_demos=ON ..
|