Update .gitlab-ci.yml

This commit is contained in:
Saibotk 2020-08-06 01:14:18 +00:00
parent e0146485c7
commit 841875465c

View file

@ -71,10 +71,10 @@ test:
before_script:
- dnf install curl
script:
- podman run -d -p 80:80 --name testing $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
- podman run -d -p 8080:80 --name testing $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
- sleep 5
- podman exec testing nginx -c /etc/nginx/nginx.conf -t
- curl http://localhost/status.txt | grep -q 'OK'
- curl http://localhost:8080/status.txt | grep -q 'OK'
- podman stop testing
- podman rm testing
except:
@ -88,10 +88,10 @@ test-deploy:
before_script:
- dnf install curl
script:
- podman run -d -p 80:80 --name testing $CI_REGISTRY_IMAGE:latest
- podman run -d -p 8080:80 --name testing $CI_REGISTRY_IMAGE:latest
- sleep 5
- podman exec testing nginx -c /etc/nginx/nginx.conf -t
- curl http://localhost/status.txt | grep -q 'OK'
- curl http://localhost:8080/status.txt | grep -q 'OK'
- podman stop testing
- podman rm testing
only: