Skip to content
Snippets Groups Projects
Commit 75015cd4 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Add example runs in Github/Gitlab CI

parent bcd145e9
No related branches found
No related tags found
1 merge request!145Ci examples
Pipeline #118583 failed
...@@ -59,4 +59,19 @@ jobs: ...@@ -59,4 +59,19 @@ jobs:
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project-within-miniconda.sh 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 . ./build-and-test-py-project-within-miniconda.sh
examples:
name: Conda Examples
runs-on: ubuntu-latest
steps:
steps:
- uses: actions/checkout@v2
- name: "Main Script"
run: |
grep -v symengine .test-conda-env-py3.yml > .test-conda-env.yml
CONDA_ENVIRONMENT=.test-conda-env.yml
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/ci-support.sh
. ci-support.sh
build_py_project_in_conda_env
run_examples
# vim: sw=4 # vim: sw=4
...@@ -84,6 +84,19 @@ Pytest POCL Titan X: ...@@ -84,6 +84,19 @@ Pytest POCL Titan X:
reports: reports:
junit: test/pytest.xml junit: test/pytest.xml
Examples Conda:
script: |
grep -v symengine .test-conda-env-py3.yml > .test-conda-env.yml
CONDA_ENVIRONMENT=.test-conda-env.yml
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/ci-support.sh
. ci-support.sh
build_py_project_in_conda_env
run_examples
tags:
- large-node
except:
- tags
Documentation: Documentation:
script: script:
- EXTRA_INSTALL="pybind11 numpy mako" - EXTRA_INSTALL="pybind11 numpy mako"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment