From 38257d23bc433af18bb446e03924d9119672f700 Mon Sep 17 00:00:00 2001 From: akisschinas Date: Sat, 8 Feb 2025 13:32:08 +0200 Subject: [PATCH] Remove CircleCI tests --- .circleci/config.yml | 66 -------------------------------------------- README.md | 2 -- 2 files changed, 68 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 8026597d9..000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,66 +0,0 @@ -# # VolEsti (volume computation and sampling library) -# # Copyright (c) 2012-2018 Vissarion Fisikopoulos -# # Licensed under GNU LGPL.3, see LICENCE file -# -# version: 2 -# jobs: -# build: -# docker: # See https://docs.docker.com/get-started/#docker-concepts if you are new to Docker. -# # - image: circleci/ruby:2.4.1-jessie -# - image: circleci/ruby:2.6-rc -# parallelism: 4 -# steps: -# - checkout -# - run: -# sudo apt-get update || true; -# sudo apt-get install cmake lp-solve; -# # sudo apt-get install flex bison libgmp-dev libeigen3-dev coinor-libipopt-dev; -# # git clone https://github.com/ethz-adrl/ifopt.git; -# # cd ifopt; -# # mkdir build; -# # cd build; -# # cmake ..; -# # make; -# # sudo make install; -# # cd ..; -# # cd ..; -# # git clone https://github.com/robol/MPSolve; -# # cd MPSolve; -# # ./autogen.sh; -# # ./configure; -# # make; -# # sudo make install; -# # cd ..; -# rm -rf build; -# mkdir build; -# cd build; -# cmake ../test -DDISABLE_NLP_ORACLES=ON; -# make; -# ctest -j8 --verbose; - -# VolEsti (volume computation and sampling library) -# Copyright (c) 2012-2018 Vissarion Fisikopoulos -# Licensed under GNU LGPL.3, see LICENCE file - -version: 2.1 -orbs: - codecov: codecov/codecov@3.1.1 -jobs: - build: - machine: - image: ubuntu-2004:202010-01 # recommended linux image - resource_class: medium - steps: - - checkout - - run: - sudo apt-get update || true; - sudo apt-get install cmake lp-solve gcovr; - rm -rf build; - mkdir build; - cd build; - cmake -DDISABLE_NLP_ORACLES=ON -DUSE_MKL=OFF -DCODE_COVERAGE=ON ../test; - make; - ctest -j8 --verbose; - gcovr -r ../include . --xml -o coverage.xml; - - codecov/upload: - file: './build/coverage.xml' diff --git a/README.md b/README.md index d4ea2bf54..9fba90981 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,6 @@ ### 🧪 Test results [![CRAN check](https://badges.cranchecks.info/worst/volesti.svg)](https://cran.r-project.org/web/checks/check_results_volesti.html) -[![CircleCI master](https://circleci.com/gh/GeomScale/volesti/tree/master.svg?style=shield)](https://circleci.com/gh/GeomScale/volesti/tree/master) -[![CircleCI develop](https://circleci.com/gh/GeomScale/volesti/tree/develop.svg?style=shield)](https://circleci.com/gh/GeomScale/volesti/tree/develop) [![gcc-test](https://github.com/GeomScale/volesti/actions/workflows/cmake-gcc.yml/badge.svg)](https://github.com/GeomScale/volesti/actions/workflows/cmake-gcc.yml?query=branch%3Adevelop) [![clang-test](https://github.com/GeomScale/volesti/actions/workflows/cmake-clang.yml/badge.svg)](https://github.com/GeomScale/volesti/actions/workflows/cmake-clang.yml?query=branch%3Adevelop) [![codecov](https://codecov.io/gh/GeomScale/volesti/branch/develop/graph/badge.svg)](https://codecov.io/gh/GeomScale/volesti)