diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 688892022a2d5cddfaf3306678dca44485c230d0..bd539266160546ef9e8a80c5f18e194ab228b5d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,4 +51,19 @@ jobs: curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project-within-miniconda.sh . ./build-and-test-py-project-within-miniconda.sh + examples3: + name: Examples Conda Py3 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: "Main Script" + run: | + CONDA_ENVIRONMENT=.test-conda-env-py3.yml + sudo apt update + sudo apt install gfortran-7 + sudo ln -s /usr/bin/gfortran-7 /usr/bin/gfortran + USE_CONDA_BUILD=1 + curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-py-project-and-run-examples.sh + . ./build-py-project-and-run-examples.sh + # vim: sw=4 diff --git a/.test-conda-env-py3.yml b/.test-conda-env-py3.yml index a7d4c6d4cea39193fb02d5b06c3116f58bfd1a19..f277a48523488996c4296fac3c29d0ee4ee5ab0f 100644 --- a/.test-conda-env-py3.yml +++ b/.test-conda-env-py3.yml @@ -37,3 +37,6 @@ dependencies: # requires pymetis for tests for partition_mesh - git+https://gitlab.tiker.net/inducer/pymetis.git + + # required for plot-connectivity.py example + - git+https://gitlab.tiker.net/inducer/pyvisfile.git