Update .gitlab-ci.yml
This commit is contained in:
parent
e0146485c7
commit
841875465c
1 changed files with 4 additions and 4 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue