diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9eb3d6d..4fb86a5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,3 @@ -stages: - - build - - test - - deploy - # Change pip's cache directory to be inside the project directory since we can # only cache local items. variables: @@ -19,7 +14,7 @@ cache: - venv/ before_script: - - python38 -V # Print out python version for debugging + - python3 -V # Print out python version for debugging - pip install virtualenv - virtualenv venv - source venv/bin/activate @@ -28,6 +23,7 @@ build_zeo: stage: build tags: - shell + - ubuntu script: - docker build -t zeo:5.2.0 src/zeo @@ -35,6 +31,7 @@ build_flask: stage: build tags: - shell + - ubuntu script: - docker build -t webui:1.0 src/webui @@ -42,13 +39,7 @@ build_api: stage: build tags: - shell + - ubuntu script: - echo "Build api image" -tests: - stage: test - tags: - - docker - image: webui:1.0 - services: - - zeo:5.2.0