Skip to content
Snippets Groups Projects
Commit 15b270b5 authored by Vuillaume's avatar Vuillaume
Browse files

Merge branch 'mybinder' into 'master'

Fix mybinder environment

See merge request !234
parents c9d834ea fc349ab0
No related branches found
No related tags found
1 merge request!234Fix mybinder environment
Pipeline #205429 passed
......@@ -32,9 +32,10 @@ install:
test:
stage: test
image: python:slim
image: python:3.9-slim
script:
- apt-get -y update && apt-get install git -y
- apt-get -y update && apt-get install git gcc -y
- pip install --upgrade setuptools pip wheel
- pip install -e ".[tests]"
- pytest eossr/
--junitxml=junit_py37.xml
......@@ -85,7 +86,7 @@ build_docker:
- >-
/kaniko/executor
--context "${CI_PROJECT_DIR}"
--dockerfile "${CI_PROJECT_DIR}/Dockerfile"
--dockerfile "${CI_PROJECT_DIR}/Docker/Dockerfile"
--destination "${CI_REGISTRY_IMAGE}:${CI_COMMIT_TAG}"
--destination "${CI_REGISTRY_IMAGE}:latest"
rules:
......@@ -103,7 +104,7 @@ build_docker_main:
- >-
/kaniko/executor
--context "${CI_PROJECT_DIR}"
--dockerfile "${CI_PROJECT_DIR}/Dockerfile"
--dockerfile "${CI_PROJECT_DIR}/Docker/Dockerfile"
--destination "${CI_REGISTRY_IMAGE}:dev"
only:
- master
......@@ -127,7 +128,7 @@ deploy_zenodo:
pages:
stage: deploy_pages
image: python:slim
image: python:3.9-slim
script:
- apt update --yes && apt install --yes pandoc pip git
- pip install --upgrade setuptools pip
......
FROM docker.io/python:3.8-slim
FROM docker.io/python:3.9-slim
SHELL [ "/bin/bash", "-c"]
......
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