Skip to content
Snippets Groups Projects
.gitlab-ci.yml 376 B
Newer Older
Matthieu Boileau's avatar
Matthieu Boileau committed
stages:
  - build
  - test

b:docker:
  stage: build
  tags:
    - shell, docker
  script:
    - docker build --pull -t boileaum/rosen:latest -f ./docker/Dockerfile-rosen .

t:docker:
  stage: test
  tags:
    - shell, docker
  script:
Matthieu Boileau's avatar
Matthieu Boileau committed
    - docker build --pull -t boileaum/rosen:latest -f ./docker/Dockerfile-rosen .
Matthieu Boileau's avatar
Matthieu Boileau committed
    - docker run boileaum/rosen /bin/bash -c 'pytest -v'