1
0
mirror of https://gitlab.com/packaging/gitea synced 2024-12-18 16:13:44 +00:00

increase delay

Signed-off-by: morph027 <stefan.heitmueller@gmx.com>
This commit is contained in:
morph027 2023-11-28 08:50:33 +01:00
parent 63e4c70f1d
commit 74d7e81d43
No known key found for this signature in database
GPG Key ID: BF17A54BB873BE58

View File

@ -63,7 +63,7 @@ stages:


.trigger: &trigger .trigger: &trigger
when: delayed when: delayed
start_in: 1 hours start_in: 2 hours
only: only:
- triggers - triggers


@ -95,13 +95,11 @@ gitea-arm64-trigger:
<<: *vars <<: *vars
ARCH: arm64 ARCH: arm64


test-install: .test-install: &test-install
stage: test stage: test
image: docker:latest image: docker:latest
services: services:
- docker:dind - docker:dind
needs:
- gitea-amd64-trigger
script: script:
- docker run - docker run
-d -d
@ -113,10 +111,8 @@ test-install:
-e CI_COMMIT_TAG=$CI_COMMIT_TAG -e CI_COMMIT_TAG=$CI_COMMIT_TAG
jrei/systemd-ubuntu:20.04 jrei/systemd-ubuntu:20.04
- docker exec -t systemd-ubuntu /bin/bash /src/.gitlab-ci/test-install.sh - docker exec -t systemd-ubuntu /bin/bash /src/.gitlab-ci/test-install.sh
only:
- tags


test-update: .test-update: &test-update
stage: test stage: test
image: docker:latest image: docker:latest
services: services:
@ -137,6 +133,34 @@ test-update:
only: only:
- tags - tags


test-install-trigger:
<<: *test-install
needs:
- gitea-amd64-trigger
only:
- trigger

test-install-tag:
<<: *test-install
needs:
- gitea-amd64-tag
only:
- tags

test-update-trigger:
<<: *test-update
needs:
- gitea-amd64-trigger
only:
- trigger

test-update-tag:
<<: *test-update
needs:
- gitea-amd64-tag
only:
- tags

reprepro: reprepro:
cache: cache:
untracked: true untracked: true