2022-09-06 19:04:08 +00:00
|
|
|
# Si besoin d'executer le before_script manuellement :
|
|
|
|
# sed -n 's/^ - \(.*\)$/\1/p' .gitlab-ci.yml | bash
|
2022-02-12 18:33:54 +00:00
|
|
|
before_script:
|
2022-09-03 13:26:40 +00:00
|
|
|
- podman container exists podman-peerjs && podman container rm --force podman-peerjs
|
|
|
|
- rm -f ~/.config/systemd/user/container-podman-peerjs.service && systemctl --user daemon-reload
|
2022-02-12 18:33:54 +00:00
|
|
|
|
|
|
|
peerjs:
|
|
|
|
stage: test
|
|
|
|
script:
|
2022-02-12 18:35:12 +00:00
|
|
|
- cd podman-peerjs
|
2022-08-12 18:09:34 +00:00
|
|
|
- ./ci_build-images.sh
|
2022-02-20 17:15:00 +00:00
|
|
|
- GARBAYE_PEERJS_ENV_LISTENPORT=18081 ./10_install.sh
|
2022-02-12 18:33:54 +00:00
|
|
|
- ./20_enable.sh
|
|
|
|
- ./30_start.sh && sleep 10
|
|
|
|
- ./40_stop.sh
|
|
|
|
- ./70_disable.sh
|
|
|
|
- ./80_destroy.sh
|
2022-02-14 18:39:55 +00:00
|
|
|
tags:
|
|
|
|
- garbaye
|
|
|
|
- compute
|
|
|
|
- podman
|