mirror of
https://gitlab.com/packaging/gitea
synced 2024-12-18 16:13:44 +00:00
add test
This commit is contained in:
parent
b4157100de
commit
693e213a2f
@ -47,7 +47,7 @@ package:
|
||||
only:
|
||||
- tags
|
||||
|
||||
test-plain-install:
|
||||
test-install:
|
||||
stage: test
|
||||
image: docker:latest
|
||||
services:
|
||||
@ -62,7 +62,26 @@ test-plain-install:
|
||||
-e CI_PROJECT_DIR=/src
|
||||
-e CI_COMMIT_TAG=$CI_COMMIT_TAG
|
||||
jrei/systemd-ubuntu:20.04
|
||||
- docker exec -t systemd-ubuntu /bin/bash /src/.gitlab-ci/test.sh
|
||||
- docker exec -t systemd-ubuntu /bin/bash /src/.gitlab-ci/test-install.sh
|
||||
only:
|
||||
- tags
|
||||
|
||||
test-update:
|
||||
stage: test
|
||||
image: docker:latest
|
||||
services:
|
||||
- docker:dind
|
||||
script:
|
||||
- docker run
|
||||
-d
|
||||
--name systemd-ubuntu
|
||||
--privileged
|
||||
-v /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
-v $CI_PROJECT_DIR:/src
|
||||
-e CI_PROJECT_DIR=/src
|
||||
-e CI_COMMIT_TAG=$CI_COMMIT_TAG
|
||||
jrei/systemd-ubuntu:20.04
|
||||
- docker exec -t systemd-ubuntu /bin/bash /src/.gitlab-ci/test-update.sh
|
||||
only:
|
||||
- tags
|
||||
|
||||
|
BIN
.gitlab-ci/data.tgz
Normal file
BIN
.gitlab-ci/data.tgz
Normal file
Binary file not shown.
6
.gitlab-ci/test-install.sh
Normal file
6
.gitlab-ci/test-install.sh
Normal file
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
. "${CI_PROJECT_DIR}/.gitlab-ci/test.sh"
|
||||
|
||||
apt-get -qqy install "${CI_PROJECT_DIR}/gitea_${VERSION}-${PATCHLEVEL}_amd64.deb"
|
||||
start_gitea
|
13
.gitlab-ci/test-update.sh
Normal file
13
.gitlab-ci/test-update.sh
Normal file
@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
. "${CI_PROJECT_DIR}/.gitlab-ci/test.sh"
|
||||
|
||||
curl -sL -o /etc/apt/trusted.gpg.d/morph027-gitea.asc https://packaging.gitlab.io/gitea/gpg.key
|
||||
echo "deb [arch=amd64] https://packaging.gitlab.io/gitea gitea main" > /etc/apt/sources.list.d/morph027-gitea.list
|
||||
apt-get -qq update
|
||||
apt-get -qqy install gitea
|
||||
tar -C / -xzf "/${CI_PROJECT_DIR}/.gitlab-ci/data.tgz"
|
||||
chown -R gitea: /var/lib/gitea /etc/gitea
|
||||
start_gitea
|
||||
apt-get -qqy install "${CI_PROJECT_DIR}/gitea_${VERSION}-${PATCHLEVEL}_amd64.deb"
|
||||
restart_gitea
|
@ -4,10 +4,21 @@ set -e
|
||||
|
||||
VERSION=$(echo "${CI_COMMIT_TAG#*v}" | cut -d'-' -f1)
|
||||
PATCHLEVEL=$(echo "${CI_COMMIT_TAG}" | cut -d'-' -f2)
|
||||
export VERSION PATCHLEVEL
|
||||
|
||||
start_gitea() {
|
||||
systemctl start gitea
|
||||
sleep 10
|
||||
if ! systemctl is-active gitea; then
|
||||
journalctl -lu gitea --no-pager
|
||||
fi
|
||||
curl -s localhost:3000/api/v1/version | jq -e '.version'
|
||||
}
|
||||
|
||||
restart_gitea() {
|
||||
systemctl stop gitea
|
||||
start_gitea
|
||||
}
|
||||
|
||||
apt-get -qq update
|
||||
apt-get -qqy install "${CI_PROJECT_DIR}/gitea_${VERSION}-${PATCHLEVEL}_amd64.deb"
|
||||
systemctl start gitea
|
||||
sleep 10
|
||||
if ! systemctl is-active gitea; then
|
||||
journalctl -lu gitea --no-pager
|
||||
fi
|
||||
apt-get -qqy install curl jq
|
||||
|
Loading…
Reference in New Issue
Block a user