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

Add CI jobs for test without arg check

parent 2d11219a
No related branches found
No related tags found
1 merge request!424Skip arg check ci
Pipeline #126009 failed
...@@ -46,6 +46,18 @@ jobs: ...@@ -46,6 +46,18 @@ 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
pytest:
name: Conda Pytest without arg check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: "Main Script"
run: |
CONDA_ENVIRONMENT=.test-conda-env-py3.yml
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project-within-miniconda.sh
export _LOOPY_SKIP_ARG_CHECKS=1
. ./build-and-test-py-project-within-miniconda.sh
pytest_twice: pytest_twice:
name: Conda Pytest Twice (for cache behavior) name: Conda Pytest Twice (for cache behavior)
runs-on: ubuntu-latest runs-on: ubuntu-latest
......
...@@ -15,6 +15,24 @@ Python 3 POCL: ...@@ -15,6 +15,24 @@ Python 3 POCL:
reports: reports:
junit: test/pytest.xml junit: test/pytest.xml
Python 3 POCL without arg check:
script:
- export PY_EXE=python3
- export PYOPENCL_TEST=portable:pthread
- export EXTRA_INSTALL="pybind11 numpy mako"
- export LOOPY_NO_CACHE=1
- export _LOOPY_SKIP_ARG_CHECKS=1
- curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh
- ". ./build-and-test-py-project.sh"
tags:
- python3
- pocl
except:
- tags
artifacts:
reports:
junit: test/pytest.xml
Python 3 Intel: Python 3 Intel:
script: script:
- export PY_EXE=python3 - export PY_EXE=python3
......
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