Skip to content
Snippets Groups Projects
.gitlab-ci.yml 363 B
Newer Older
stages:
  - test
Christoph Alt's avatar
Christoph Alt committed
  - deploy

test:
   stage: test
   tags:
      - docker
   image: python:3.8
   script:
      - pip install --user pytest
Christoph Alt's avatar
Christoph Alt committed
      - pip install --user .
      - python -m pytest

Christoph Alt's avatar
Christoph Alt committed
deploy_uniformgrid_gpu:
  stage: deploy
  tags:
    - docker
  image: python:3.8
  script:
    - pip install --user .
    - python3 dashboards/deploy.py
  when: manual