Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cli
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
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
funkwhale
cli
Merge requests
!5
Resolve "Provide precompiled binaries for easier install"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Provide precompiled binaries for easier install"
5-binaries
into
master
Overview
0
Commits
4
Pipelines
25
Changes
1
Merged
Agate
requested to merge
5-binaries
into
master
6 years ago
Overview
0
Commits
4
Pipelines
25
Changes
1
Expand
Closes
#5 (closed)
0
0
Merge request reports
Viewing commit
1dd06330
Show latest version
1 file
+
41
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Verified
1dd06330
Added CI configuration to build CLI for linux
· 1dd06330
Eliot Berriot
authored
6 years ago
.gitlab-ci.yml
+
41
−
0
Options
stages
:
-
test
-
build
variables
:
PIP_CACHE_DIR
:
"
$CI_PROJECT_DIR/.cache/pip"
@@ -17,3 +18,43 @@ test:
-
pytest
tags
:
-
docker
build-linux
:
stage
:
build
image
:
python:3.6
before_script
:
-
pip install .[dev]
script
:
-
pyinstaller --clean -y cli.spec --distpath .
-
echo "Testing the generated CLI works…" && ./dist/funkwhale --help && echo "funkwhale CLI working \o/"
artifacts
:
name
:
"
linux_${CI_COMMIT_REF_NAME}"
paths
:
-
funkwhale
# only:
# - tags@funkwhale/funkwhale
# - master@funkwhale/funkwhale
tags
:
-
docker
build-windows
:
stage
:
build
image
:
cdrx/pyinstaller-windows:python3
before_script
:
-
pip install .[dev]
script
:
-
pyinstaller --clean -y cli.spec --distpath .
-
echo "Testing the generated CLI works…" && ./dist/funkwhale --help && echo "funkwhale CLI working \o/"
artifacts
:
name
:
"
linux_${CI_COMMIT_REF_NAME}"
paths
:
-
funkwhale
# only:
# - tags@funkwhale/funkwhale
# - master@funkwhale/funkwhale
tags
:
-
docker
Loading