diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 9e7e976..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,52 +0,0 @@ -version: 2 -jobs: - build: - docker: - - image: ubuntu:xenial -# - image: ubuntu:artful -# - image: ubuntu:bionic -# - image: ubuntu:cosmic - steps: - - checkout - - run: apt-get update - - run: apt-get install -y libcgal-dev liboce-foundation-dev cmake git - libhdf5-dev libblas-dev liblapack-dev g++ gfortran autoconf - libtool build-essential libcgal-qt5-dev - - run: git clone https://bitbucket.org/fathomteam/moab; - cd moab; - autoreconf -fi; - mkdir bld; - cd bld; - ../configure --enable-optimize --enable-shared - --with-hdf5=/usr/lib/x86_64-linux-gnu/hdf5/serial --prefix=/opt/moab; - make ; - make install; - cd ../..; - rm -rf moab - - run: mkdir bld ; - cd bld ; - export LD_LIBRARY_PATH=/opt/moab/lib ; - cmake .. ; - make ; - make test - -#version: 2 -#jobs: -# build: -# docker: -# - image: debian:stretch -# steps: -# - checkout -# - run: -# command: | -# -# test: -# - run: -# command: echo hello world -# -#workflows: -# version: 2 -# build_and_test: -# jobs: -# - build -# - test