Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.devtools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
bob
bob.devtools
Commits
89420718
Commit
89420718
authored
6 years ago
by
André Anjos
Browse files
Options
Downloads
Patches
Plain Diff
[ci] Making it work for deployment
parent
4f391f93
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#25804
failed
6 years ago
Stage: build
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bob/devtools/data/base-condarc
+2
-0
2 additions, 0 deletions
bob/devtools/data/base-condarc
ci/bootstrap.sh
+10
-19
10 additions, 19 deletions
ci/bootstrap.sh
ci/build.sh
+10
-6
10 additions, 6 deletions
ci/build.sh
with
22 additions
and
25 deletions
bob/devtools/data/base-condarc
+
2
−
0
View file @
89420718
...
@@ -10,3 +10,5 @@ quiet: true #!final
...
@@ -10,3 +10,5 @@ quiet: true #!final
show_channel_urls: true #!final
show_channel_urls: true #!final
anaconda_upload: false #!final
anaconda_upload: false #!final
ssl_verify: false #!final
ssl_verify: false #!final
channels:
- defaults
This diff is collapsed.
Click to expand it.
ci/bootstrap.sh
+
10
−
19
View file @
89420718
...
@@ -108,7 +108,7 @@ install_miniconda() {
...
@@ -108,7 +108,7 @@ install_miniconda() {
check_defined CONDA_ROOT
check_defined CONDA_ROOT
check_defined CI_PROJECT_DIR
check_defined CI_PROJECT_DIR
export
CONDARC
=
${
CONDA_ROOT
}
/condarc
export
CONDARC
=
"
${
CONDA_ROOT
}
/condarc
"
check_defined CONDARC
check_defined CONDARC
# checks if a conda installation exists. Otherwise, installs one
# checks if a conda installation exists. Otherwise, installs one
...
@@ -120,33 +120,24 @@ run_cmd mkdir -p ${CONDA_ROOT}/pkgs
...
@@ -120,33 +120,24 @@ run_cmd mkdir -p ${CONDA_ROOT}/pkgs
run_cmd
touch
${
CONDA_ROOT
}
/pkgs/urls
run_cmd
touch
${
CONDA_ROOT
}
/pkgs/urls
run_cmd
touch
${
CONDA_ROOT
}
/pkgs/urls.txt
run_cmd
touch
${
CONDA_ROOT
}
/pkgs/urls.txt
CONDA_CHANNEL_ROOT
=
http://www.idiap.ch/public/conda
check_defined CONDA_CHANNEL_ROOT
run_cmd
cp
-fv
${
CI_PROJECT_DIR
}
/bob/devtools/data/base-condarc
${
CONDARC
}
run_cmd
cp
-fv
${
CI_PROJECT_DIR
}
/bob/devtools/data/base-condarc
${
CONDARC
}
echo
"channels:"
>>
${
CONDARC
}
if
[
"
${
1
}
"
==
"beta"
]
;
then
echo
" -
${
CONDA_CHANNEL_ROOT
}
/label/beta"
>>
${
CONDARC
}
fi
echo
" -
${
CONDA_CHANNEL_ROOT
}
"
>>
${
CONDARC
}
echo
" - defaults"
>>
${
CONDARC
}
# displays contents of our configuration
echo
"Contents of
\`
${
CONDARC
}
':"
echo
"Contents of
\`
${
CONDARC
}
':"
cat
${
CONDARC
}
cat
${
CONDARC
}
# setup conda-channels
CONDA_CHANNEL_ROOT
=
"http://www.idiap.ch/public/conda"
check_defined CONDA_CHANNEL_ROOT
CONDA_CLI_CHANNELS
=
"-c
${
CONDA_CHANNEL_ROOT
}
-c defaults"
# creates a base installation depending on the purpose
# creates a base installation depending on the purpose
if
[
"
${
1
}
"
==
"build"
]
;
then
if
[
"
${
1
}
"
==
"build"
]
;
then
run_cmd
${
CONDA_ROOT
}
/bin/conda
install
-n
base python
conda
=
4 conda-build
=
3
run_cmd
${
CONDA_ROOT
}
/bin/conda
install
-n
base python
conda
=
4 conda-build
=
3
elif
[
"
${
1
}
"
==
"local"
]
;
then
elif
[
"
${
1
}
"
==
"local"
]
;
then
if
[
"
$(
uname
-s
)
"
==
"Linux"
]
;
then
run_cmd
${
CONDA_ROOT
}
/bin/conda index
${
CONDA_ROOT
}
/conda-bld
_os
=
"linux-64"
CONDA_CLI_CHANNELS
=
"-c
${
CONDA_ROOT
}
/conda-bld
${
CONDA_CLI_CHANNELS
}
"
else
run_cmd
${
CONDA_ROOT
}
/bin/conda create
-n
"
${
2
}
"
--override-channels
${
CONDA_CLI_CHANNELS
}
bob.devtools
_os
=
"osx-64"
fi
run_cmd
${
CONDA_ROOT
}
/bin/conda create
-n
"
${
2
}
"
${
CONDA_ROOT
}
/conda-bld/
${
_os
}
/bob.devtools-
*
.tar.bz2
elif
[
"
${
1
}
"
==
"beta"
]
||
[
"
${
1
}
"
==
"stable"
]
;
then
elif
[
"
${
1
}
"
==
"beta"
]
||
[
"
${
1
}
"
==
"stable"
]
;
then
run_cmd
${
CONDA_ROOT
}
/bin/conda create
-n
"
${
2
}
"
bob.devtools
run_cmd
${
CONDA_ROOT
}
/bin/conda create
-n
"
${
2
}
"
--override-channels
${
CONDA_CLI_CHANNELS
}
bob.devtools
else
else
log_error
"Bootstrap with 'build', or 'local|beta|stable <name>'"
log_error
"Bootstrap with 'build', or 'local|beta|stable <name>'"
log_error
"The value '
${
1
}
' is not currently supported"
log_error
"The value '
${
1
}
' is not currently supported"
...
...
This diff is collapsed.
Click to expand it.
ci/build.sh
+
10
−
6
View file @
89420718
...
@@ -47,7 +47,7 @@ check_defined PYTHON_VERSION
...
@@ -47,7 +47,7 @@ check_defined PYTHON_VERSION
export
DOCSERVER
=
http://www.idiap.ch
export
DOCSERVER
=
http://www.idiap.ch
check_defined DOCSERVER
check_defined DOCSERVER
export
CONDARC
=
${
CONDA_ROOT
}
/condarc
export
CONDARC
=
"
${
CONDA_ROOT
}
/condarc
"
check_defined CONDARC
check_defined CONDARC
export
BOB_PACKAGE_VERSION
=
`
cat
version.txt |
tr
-d
'\n'
`
;
export
BOB_PACKAGE_VERSION
=
`
cat
version.txt |
tr
-d
'\n'
`
;
...
@@ -59,21 +59,25 @@ run_cmd conda activate base
...
@@ -59,21 +59,25 @@ run_cmd conda activate base
export
PATH
export
PATH
check_defined PATH
check_defined PATH
CONDA_CHANNEL_ROOT
=
"
${
DOCSERVER
}
/public/conda"
check_defined CONDA_CHANNEL_ROOT
if
[
-z
"
${
CI_COMMIT_TAG
}
"
]
;
then
#building beta
if
[
-z
"
${
CI_COMMIT_TAG
}
"
]
;
then
#building beta
channel
=
"http://www.idiap.ch/public/conda
/label/beta"
UPLOAD_CHANNEL
=
"
${
CONDA_CHANNEL_ROOT
}
/label/beta"
else
else
channel
=
"http://www.idiap.ch/public/conda
"
UPLOAD_CHANNEL
=
"
${
CONDA_CHANNEL_ROOT
}
"
fi
fi
check_defined UPLOAD_CHANNEL
log_info
"
$
${
CONDA_ROOT
}
/bin/python
${
CI_PROJECT_DIR
}
/ci/nextbuild.py
${
channel
}
${
CI_PROJECT_NAME
}
${
BOB_PACKAGE_VERSION
}
${
PYTHON_VERSION
}
"
log_info
"
$
${
CONDA_ROOT
}
/bin/python
${
CI_PROJECT_DIR
}
/ci/nextbuild.py
${
UPLOAD_CHANNEL
}
${
CI_PROJECT_NAME
}
${
BOB_PACKAGE_VERSION
}
${
PYTHON_VERSION
}
"
export
BOB_BUILD_NUMBER
=
$(
${
CONDA_ROOT
}
/bin/python
${
CI_PROJECT_DIR
}
/ci/nextbuild.py
${
channel
}
${
CI_PROJECT_NAME
}
${
BOB_PACKAGE_VERSION
}
${
PYTHON_VERSION
}
)
export
BOB_BUILD_NUMBER
=
$(
${
CONDA_ROOT
}
/bin/python
${
CI_PROJECT_DIR
}
/ci/nextbuild.py
${
UPLOAD_CHANNEL
}
${
CI_PROJECT_NAME
}
${
BOB_PACKAGE_VERSION
}
${
PYTHON_VERSION
}
)
check_defined BOB_BUILD_NUMBER
check_defined BOB_BUILD_NUMBER
# copy the recipe_append.yaml over before build
# copy the recipe_append.yaml over before build
run_cmd
cp
${
CI_PROJECT_DIR
}
/bob/devtools/data/recipe_append.yaml conda/
run_cmd
cp
${
CI_PROJECT_DIR
}
/bob/devtools/data/recipe_append.yaml conda/
run_cmd
cp
${
CI_PROJECT_DIR
}
/bob/devtools/data/conda_build_config.yaml conda/
run_cmd
cp
${
CI_PROJECT_DIR
}
/bob/devtools/data/conda_build_config.yaml conda/
run_cmd
${
CONDA_ROOT
}
/bin/conda build
"--python=
${
PYTHON_VERSION
}
--no-anaconda-upload"
conda
# to build, we only rely on the stable channel and defaults
run_cmd
${
CONDA_ROOT
}
/bin/conda build
--override-channels
-c
"
${
CONDA_CHANNEL_ROOT
}
-c defaults --python=
${
PYTHON_VERSION
}
--no-anaconda-upload"
conda
# run git clean to clean everything that is not needed. This helps to keep the
# run git clean to clean everything that is not needed. This helps to keep the
# disk usage on CI machines to minimum.
# disk usage on CI machines to minimum.
...
...
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