19 lines
768 B
YAML
19 lines
768 B
YAML
|
before_script:
|
||
|
- podman pod exists podman-matrix && podman pod rm --force podman-matrix
|
||
|
- rm -f ~/.config/systemd/user/pod-podman-matrix.service && systemctl --user daemon-reload
|
||
|
- podman volume exists matrixdotorg_synapse-data && podman volume rm matrixdotorg_synapse-data
|
||
|
- podman volume exists matrixdotorg_synapse-pgsql && podman volume rm matrixdotorg_synapse-pgsql
|
||
|
|
||
|
matrix:
|
||
|
stage: test
|
||
|
script:
|
||
|
- cd podman-matrix
|
||
|
- GARBAYE_MATRIX_POSTGRES_PASSWORD=WHATEVERCIDBPASSWORD GARBAYE_MATRIX_ENV_LISTENPORT=18086 ./05_freshinstall.sh
|
||
|
- ./20_enable.sh
|
||
|
- ./30_start.sh && sleep 10
|
||
|
- ./40_stop.sh
|
||
|
- ./70_disable.sh
|
||
|
- ./80_destroy.sh
|
||
|
- podman volume rm matrixdotorg_synapse-data
|
||
|
- podman volume rm matrixdotorg_synapse-pgsql
|