Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenMesh
openmesh-python
Commits
c2d25349
Commit
c2d25349
authored
Apr 19, 2018
by
Isaak Lim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add deploy script for pypi
parent
96e40cec
Pipeline
#6865
passed with stages
in 7 minutes and 15 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
deploy.sh
deploy.sh
+20
-0
No files found.
deploy.sh
0 → 100755
View file @
c2d25349
#!/bin/bash
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"
unzip
"
$name
.zip"
rm
-f
"
$name
.zip"
done
(
cd
release
for
name
in
$(
find
-type
f
-name
"*-linux_*.whl"
)
do
echo
$name
newname
=
"
$(
echo
$name
|
sed
-e
's/-linux_/-manylinux1_/'
)
"
;
mv
$name
$newname
done
twine upload
*
.tar.gz
twine upload
*
.whl
)
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