Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fbxsdk_python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
ADILI Robin
fbxsdk_python
Commits
3dedc767
Commit
3dedc767
authored
4 years ago
by
Vagrant Default User
Browse files
Options
Downloads
Patches
Plain Diff
buildall scripts
parent
c42e4f12
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
buildall.sh
+14
-0
14 additions, 0 deletions
buildall.sh
createenvs.sh
+7
-0
7 additions, 0 deletions
createenvs.sh
taranduploadall.sh
+11
-0
11 additions, 0 deletions
taranduploadall.sh
with
32 additions
and
0 deletions
buildall.sh
0 → 100755
+
14
−
0
View file @
3dedc767
#!/bin/bash
pyversions
=(
35 36 37 38
)
source
~/miniconda3/etc/profile.d/conda.sh
for
vers
in
${
pyversions
[@]
}
do
conda activate python
${
vers
}
python
--version
./build.sh
#cp -r fbx fbxsdkpy-cp${vers}-gnu_linux_x64
rm
-rf
build/
git checkout sip
*
conda deactivate
done
This diff is collapsed.
Click to expand it.
createenvs.sh
0 → 100755
+
7
−
0
View file @
3dedc767
#!/bin/bash
pyversions
=(
35 36 37 38
)
for
vers
in
${
pyversions
[@]
}
do
conda create
-y
python
=
${
vers
:0:1
}
.
${
vers
:1
}
-n
python
${
vers
}
done
This diff is collapsed.
Click to expand it.
taranduploadall.sh
0 → 100755
+
11
−
0
View file @
3dedc767
#!/bin/bash
projectid
=
18692
for
a
in
$(
ls
-1d
fbxsdkpy
*
/
)
do
archive
=
${
a
//\//
}
.tar.gz
tar
-cvf
${
archive
}
${
a
}
path
=
$(
curl
--request
POST
--header
"PRIVATE-TOKEN:
$GITLAB_TOKEN
"
--form
"file=@
${
archive
}
"
"https://gitlab.inria.fr/api/v4/projects/
${
projectid
}
/uploads"
|jq
'.full_path'
)
echo
"https://gitlab.inria.fr
${
path
//\
"/}"
done
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