Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenMesh
openmesh-python
Commits
11019391
Commit
11019391
authored
Jul 06, 2018
by
Janis Born
Browse files
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
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
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment