Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
openmesh-python
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
7
Issues
7
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenMesh
openmesh-python
Commits
11019391
Commit
11019391
authored
Jul 06, 2018
by
Janis Born
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add option to specify a revision to publish in deploy.sh
parent
0a0c5154
Pipeline
#7285
passed with stages
in 5 minutes and 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
deploy.sh
deploy.sh
+9
-1
No files found.
deploy.sh
View file @
11019391
#!/bin/bash
# usage:
# ./deploy.sh [revision]
#
# revision: tag, branch name, or commit to publish. Default is 'master'
revision
=
${
1
:-
master
}
for
name
in
"deploy-sdist"
"deploy-2.7-macos"
"deploy-3.5-macos"
"deploy-2.7-linux"
"deploy-3.5-linux"
"deploy-3.6-VS2017"
do
wget
"https://www.graphics.rwth-aachen.de:9000/OpenMesh/openmesh-python/-/jobs/artifacts/
master
/download?job=
$name
"
-O
"
$name
.zip"
wget
"https://www.graphics.rwth-aachen.de:9000/OpenMesh/openmesh-python/-/jobs/artifacts/
$revision
/download?job=
$name
"
-O
"
$name
.zip"
unzip
"
$name
.zip"
rm
-f
"
$name
.zip"
done
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment