From 23c760b082434e62b31c66f418b488426dcaab67 Mon Sep 17 00:00:00 2001 From: Justin Carpentier <justin.carpentier@inria.fr> Date: Fri, 16 Apr 2021 15:51:52 +0200 Subject: [PATCH] ci: add macos/linux via Conda --- .github/workflows/macos-linux-conda.yml | 55 +++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 .github/workflows/macos-linux-conda.yml diff --git a/.github/workflows/macos-linux-conda.yml b/.github/workflows/macos-linux-conda.yml new file mode 100644 index 00000000..e71d3a22 --- /dev/null +++ b/.github/workflows/macos-linux-conda.yml @@ -0,0 +1,55 @@ +name: CI - EigenPy for Mac OS X/Linux via Conda + +on: [push,pull_request] + +jobs: + eigenpy-conda: + name: CI - EigenPy on ${{ matrix.os }} via Conda + runs-on: ${{ matrix.os }} + + strategy: + fail-fast: false + matrix: + os: ["ubuntu-latest", "macos-latest"] + + steps: + - uses: actions/checkout@v2 + + - name: Checkout submodules + run: | + git submodule update --init + + - uses: conda-incubator/setup-miniconda@v2 + with: + activate-environment: eigenpy + auto-update-conda: true + environment-file: .github/workflows/conda/environment.yml + python-version: 3.8 + + - name: Install cmake and update conda + shell: bash -l {0} + run: | + conda activate eigenpy + conda install cmake -c main + + - name: Build EigenPy + shell: bash -l {0} + run: | + conda activate eigenpy + echo $CONDA_PREFIX + + mkdir build + cd build + + cmake .. -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=$(which python3) + make + make build_tests + export CTEST_OUTPUT_ON_FAILURE=1 + make test + make install + + - name: Uninstall EigenPy + shell: bash -l {0} + run: | + cd build + make uninstall -- GitLab