25 lines
727 B
YAML
25 lines
727 B
YAML
before_script:
|
|
- podman pod exists podman-jitsi && podman pod rm --force podman-jitsi
|
|
- rm -f ~/.config/systemd/user/pod-podman-jitsi.service && systemctl --user daemon-reload
|
|
- podman unshare rm -rf ~/.jitsi-meet-cfg
|
|
|
|
jitsi:
|
|
stage: test
|
|
script:
|
|
- cd podman-jitsi
|
|
- GARBAYE_JITSI_ENV_LISTENPORT=18085 ./10_install.sh
|
|
- ./20_enable.sh
|
|
- ./30_start.sh && sleep 10
|
|
- ./40_stop.sh
|
|
- ./30_start.sh && sleep 10
|
|
- GARBAYE_JITSI_ENV_LISTENPORT=18085 ./50_update.sh
|
|
- ./40_stop.sh
|
|
- ./70_disable.sh
|
|
- ./80_destroy.sh
|
|
- podman unshare rm -rf ~/.jitsi-meet-cfg
|
|
tags:
|
|
- garbaye
|
|
- compute
|
|
- podman
|
|
- x86_64 # See https://github.com/jitsi/docker-jitsi-meet/issues/1214
|