Skip to content
Snippets Groups Projects
Commit 18de9884 authored by Martin Reinecke's avatar Martin Reinecke
Browse files

add basic CI capabilities

parent 2a1651f8
No related branches found
No related tags found
No related merge requests found
image: $CONTAINER_TEST_IMAGE
variables:
CONTAINER_TEST_IMAGE: gitlab-registry.mpcdf.mpg.de/$CI_PROJECT_PATH:$CI_BUILD_REF_NAME
OMP_NUM_THREADS: 2
stages:
- build_docker
- testing
build_docker:
image: docker:stable
stage: build_docker
script:
- docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN gitlab-registry.mpcdf.mpg.de
- docker build -t $CONTAINER_TEST_IMAGE .
- docker push $CONTAINER_TEST_IMAGE
test_suite:
stage: testing
script:
- cd pypocketfft
- pip3 install --user .
- pytest-3 -q test.py
FROM debian:testing-slim
RUN apt-get update && apt-get install -y git python3-pip python3-pytest && rm -rf /var/lib/apt/lists/*
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