Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
ansible
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
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
funkwhale
ansible
Merge requests
!6
CI tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
CI tests
ci
into
master
Overview
0
Commits
2
Pipelines
11
Changes
1
Merged
Agate
requested to merge
ci
into
master
5 years ago
Overview
0
Commits
2
Pipelines
11
Changes
1
Expand
0
0
Merge request reports
Compare
master
version 10
1c16fcf8
5 years ago
version 9
673a8644
5 years ago
version 8
62ec1814
5 years ago
version 7
4c8e9a65
5 years ago
version 6
4c991aeb
5 years ago
version 5
731dd4b1
5 years ago
version 4
075b97fa
5 years ago
version 3
9cd914a4
5 years ago
version 2
aae21457
5 years ago
version 1
46974029
5 years ago
master (base)
and
version 9
latest version
7df1f75e
2 commits,
5 years ago
version 10
1c16fcf8
2 commits,
5 years ago
version 9
673a8644
1 commit,
5 years ago
version 8
62ec1814
1 commit,
5 years ago
version 7
4c8e9a65
1 commit,
5 years ago
version 6
4c991aeb
1 commit,
5 years ago
version 5
731dd4b1
1 commit,
5 years ago
version 4
075b97fa
1 commit,
5 years ago
version 3
9cd914a4
1 commit,
5 years ago
version 2
aae21457
1 commit,
5 years ago
version 1
46974029
1 commit,
5 years ago
1 file
+
25
−
2
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
25
−
2
Options
stages
:
stages
:
-
test
-
deploy
-
deploy
variables
:
LATEST_VERSION_URL
:
https://docs.funkwhale.audio/latest.txt
test-install-script
:
stage
:
test
image
:
debian:10
interruptible
:
true
before_script
:
-
apt-get update && apt-get install -y curl
-
|
echo "Retrieving latest version from $LATEST_VERSION_URL"
funkwhale_version=$(curl -sfL $LATEST_VERSION_URL || true)
if [ -z "$funkwhale_version" ]; then
echo "Could not retrieve latest version!"
exit 1
fi
-
echo "Latest version is $funkwhale_version"
-
sed -i "0,/funkwhale_version_placeholder/{s/funkwhale_version_placeholder/$funkwhale_version/}" install.sh
script
:
-
|
set -x
printf 'test.deployment\ntest\ncontact@test.deployment\nY\nN\n\n\n\n\n\n' | bash install.sh
tags
:
-
docker
pages
:
pages
:
stage
:
deploy
stage
:
deploy
image
:
buildpack-deps
image
:
buildpack-deps
variables
:
LATEST_VERSION_URL
:
https://docs.funkwhale.audio/latest.txt
script
:
script
:
-
|
-
|
echo "Retrieving latest version from $LATEST_VERSION_URL"
echo "Retrieving latest version from $LATEST_VERSION_URL"
Loading