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
Commits
075b97fa
Verified
Commit
075b97fa
authored
5 years ago
by
Eliot Berriot
Browse files
Options
Downloads
Patches
Plain Diff
WIP CI
parent
6074dda1
No related branches found
No related tags found
No related merge requests found
Pipeline
#9130
failed
5 years ago
Stage: test
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+21
-2
21 additions, 2 deletions
.gitlab-ci.yml
with
21 additions
and
2 deletions
.gitlab-ci.yml
+
21
−
2
View file @
075b97fa
stages
:
-
test
-
deploy
variables
:
LATEST_VERSION_URL
:
https://docs.funkwhale.audio/latest.txt
test-install-script
:
stage
:
test
image
:
debian:10
script
:
-
|
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
-
|
echo "Y Y Y Y Y" | bash ./install.sh
tags
:
-
docker
pages
:
stage
:
deploy
image
:
buildpack-deps
variables
:
LATEST_VERSION_URL
:
https://docs.funkwhale.audio/latest.txt
script
:
-
|
echo "Retrieving latest version from $LATEST_VERSION_URL"
...
...
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