Python 3 POCL: script: - export PY_EXE=python3 - export PYOPENCL_TEST=portable:pthread - export EXTRA_INSTALL="pybind11 numpy mako" - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh - ". ./build-and-test-py-project.sh" tags: - python3 - pocl - mpi except: - tags artifacts: reports: junit: test/pytest.xml Python 3 Intel: script: - export PY_EXE=python3 - export EXTRA_INSTALL="pybind11 numpy mako" - source /opt/enable-intel-cl.sh - export PYOPENCL_TEST="intel(r):pu" - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project.sh - ". ./build-and-test-py-project.sh" tags: - python3 - pocl - mpi except: - tags artifacts: reports: junit: test/pytest.xml Python 3 POCL Examples: script: - export PY_EXE=python3 - export PYOPENCL_TEST=portable:pthread - export EXTRA_INSTALL="pybind11 numpy mako mpi4py pyvisfile pymetis" - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-py-project-and-run-examples.sh - ". ./build-py-project-and-run-examples.sh" tags: - python3 - pocl - large-node except: - tags Python 3 Intel Examples: script: - export PY_EXE=python3 - source /opt/enable-intel-cl.sh - export PYOPENCL_TEST="intel(r):pu" - export EXTRA_INSTALL="pybind11 numpy mako mpi4py pyvisfile pymetis" - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-py-project-and-run-examples.sh - ". ./build-py-project-and-run-examples.sh" tags: - python3 - pocl - large-node except: - tags Python 3 Conda: tags: - linux - large-node script: | CONDA_ENVIRONMENT=.test-conda-env-py3.yml curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-and-test-py-project-within-miniconda.sh # Shut up ibverbs about fork(), e.g. https://gitlab.tiker.net/inducer/grudge/-/jobs/220796 export RDMAV_FORK_SAFE=1 . ./build-and-test-py-project-within-miniconda.sh Python 3 Conda Examples: tags: - linux - large-node script: | CONDA_ENVIRONMENT=.test-conda-env-py3.yml curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/ci-support.sh . ci-support.sh build_py_project_in_conda_env # Shut up ibverbs about fork(), e.g. https://gitlab.tiker.net/inducer/grudge/-/jobs/220796 export RDMAV_FORK_SAFE=1 run_examples Documentation: script: - EXTRA_INSTALL="pybind11 numpy" - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/build-docs.sh - ". ./build-docs.sh" tags: - python3 Flake8: script: - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-flake8.sh - . ./prepare-and-run-flake8.sh "$CI_PROJECT_NAME" examples test tags: - python3 except: - tags