typo in gitlab-ci

This commit is contained in:
Andreas Balogh
2021-02-10 22:14:40 +01:00
parent 0607e62300
commit 1414df61c5

View File

@@ -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