Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
funkwhale
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blopware
funkwhale
Commits
d371357a
Verified
Commit
d371357a
authored
3 years ago
by
Georg Krause
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup pipeline definition
parent
1703e792
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+26
-28
26 additions, 28 deletions
.gitlab-ci.yml
with
26 additions
and
28 deletions
.gitlab-ci.yml
+
26
−
28
View file @
d371357a
...
...
@@ -16,6 +16,7 @@ stages:
-
test
-
build
-
deploy
-
deps
review_front
:
interruptible
:
true
...
...
@@ -116,31 +117,6 @@ flake8:
paths
:
-
"
$PIP_CACHE_DIR"
check_api_requirements
:
interruptible
:
true
stage
:
test
image
:
funkwhale/funkwhale:develop
cache
:
key
:
"
$CI_PROJECT_ID__pip_cache"
paths
:
-
"
$PIP_CACHE_DIR"
variables
:
DJANGO_SETTINGS_MODULE
:
config.settings.local
POSTGRES_HOST_AUTH_METHOD
:
trust
only
:
-
branches
before_script
:
-
apk add make git gcc python3-dev musl-dev
-
apk add postgresql-dev py3-psycopg2 libldap libffi-dev make zlib-dev jpeg-dev openldap-dev
-
cd api
-
pip3 install -r requirements/base.txt
-
pip3 install -r requirements/local.txt
-
pip3 install -r requirements/test.txt
script
:
-
$CI_PROJECT_DIR/scripts/check-api-deps.sh
tags
:
-
docker
test_api
:
interruptible
:
true
services
:
...
...
@@ -317,6 +293,28 @@ build_api:
-
master@funkwhale/funkwhale
-
develop@funkwhale/funkwhale
include
:
-
template
:
Security/Secret-Detection.gitlab-ci.yml
-
template
:
Security/SAST.gitlab-ci.yml
check_api_dependencies
:
interruptible
:
true
stage
:
deps
image
:
funkwhale/funkwhale:develop
cache
:
key
:
"
$CI_PROJECT_ID__pip_cache"
paths
:
-
"
$PIP_CACHE_DIR"
variables
:
DJANGO_SETTINGS_MODULE
:
config.settings.local
POSTGRES_HOST_AUTH_METHOD
:
trust
only
:
-
branches
before_script
:
-
apk add make git gcc python3-dev musl-dev
-
apk add postgresql-dev py3-psycopg2 libldap libffi-dev make zlib-dev jpeg-dev openldap-dev
-
cd api
-
pip3 install -r requirements/base.txt
-
pip3 install -r requirements/local.txt
-
pip3 install -r requirements/test.txt
script
:
-
$CI_PROJECT_DIR/scripts/check-api-deps.sh
tags
:
-
docker
allow_failure
:
true
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