Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uffd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Luca (strifel)
uffd
Commits
75ef8bd0
Commit
75ef8bd0
authored
2 years ago
by
Julian
Browse files
Options
Downloads
Patches
Plain Diff
Fix CI package tests
parent
1953cc8b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+11
-5
11 additions, 5 deletions
.gitlab-ci.yml
with
11 additions
and
5 deletions
.gitlab-ci.yml
+
11
−
5
View file @
75ef8bd0
...
...
@@ -151,7 +151,6 @@ html5validator:
script
:
-
./update_translations.sh $TRANSLATION_LANGUAGE
coverage
:
'
/^TOTAL.*\s+(\d+\%)$/'
trans_de
:
extends
:
.trans
variables
:
...
...
@@ -173,11 +172,16 @@ test:package:pip:bullseye:
dependencies
:
-
build:pip
# Since we want to test if the package installs correctly on a fresh Debian
# install (has correct dependencies, etc.), we don't use uffd/docker-images
# here
test:package:apt:buster
:
image
:
registry.git.cccv.de/uffd/docker-images/
buster
image
:
${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/debian:
buster
stage
:
test
before_script
:
[]
script
:
-
apt -y install ./*.deb
-
apt -y update
-
apt -y install curl ./*.deb
-
service uwsgi start uffd || ( service uwsgi status uffd ; sleep 15; cat /var/log/uwsgi/app/uffd.log; )
-
echo "server { listen 127.0.0.1:5000 default_server; include /etc/uffd/nginx.include.conf; }" > /etc/nginx/sites-enabled/uffd.ini
-
service nginx start || ( service nginx status; nginx -t; exit 1; )
...
...
@@ -187,10 +191,12 @@ test:package:apt:buster:
-
build:apt
test:package:apt:bullseye
:
image
:
registry.git.cccv.de/uffd/docker-images/
bullseye
image
:
${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/debian:
bullseye
stage
:
test
before_script
:
[]
script
:
-
apt -y install ./*.deb
-
apt -y update
-
apt -y install curl ./*.deb
-
service uwsgi start uffd || ( service uwsgi status uffd ; sleep 15; cat /var/log/uwsgi/app/uffd.log; )
-
echo "server { listen 127.0.0.1:5000 default_server; include /etc/uffd/nginx.include.conf; }" > /etc/nginx/sites-enabled/uffd.ini
-
service nginx start || ( service nginx status; nginx -t; exit 1; )
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment