Skip to content
Snippets Groups Projects
.gitlab-ci.yml 1.42 KiB
Newer Older
Jan Caron's avatar
Jan Caron committed
image: "python:3.5"

before_script:
  # Check and print Python version
Jan Caron's avatar
Jan Caron committed
  - python --version

  # Install required packages:
  # TODO: Use requirements.txt? Separate jobs for optional stuff (hyperspy, plotting)?
  # TODO: After split of Pyramid comment out and see what really is used (scipy?)!
  - pip install numpy scipy nose h5py matplotlib Pillow scikit-image cmocean hyperspy

  #- apt list --installed



  # Create SSH configuration directory if necessary (mode: read/write/execute):
  - mkdir -p --mode=700 ~/.ssh/
  # Add SSH key for jutil:
  - echo "$SSH_KEY_JUTIL" > ~/.ssh/jutil_key
  # Provide read access to owner (octal value code: 400) with chmod to the key:
  - chmod 400 ~/.ssh/jutil_key
  # Configure SSH to use ~/.ssh/jutil_key for iffgit.fz-juelich.de (-e allows \n):
  - echo -e "Host iffgit.fz-juelich.de\n\tIdentityFile ~/.ssh/jutil_key\n\n" > ~/.ssh/config
  # For Docker builds disable host key checking. Be aware that by adding that
  # you are suspectible to man-in-the-middle attacks.
  # WARNING: Use this only with the Docker executor, if you use it with shell
  # you will overwrite your user's SSH config.
  - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" >> ~/.ssh/config'
  - pip install git+ssh://gitlab@iffgit.fz-juelich.de/unger/jutil.git


  ####- pip install hyperspy tqdm cmocean nose

Jan Caron's avatar
Jan Caron committed

stages:
  - test

Jan Caron's avatar
Jan Caron committed
test:
Jan Caron's avatar
Jan Caron committed
  stage: test
  script:
    - python setup.py test