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
f22845d6
Commit
f22845d6
authored
6 years ago
by
André Anjos
Browse files
Options
Downloads
Patches
Plain Diff
[ci] Prevent artifact forget
parent
93edfdca
No related branches found
No related tags found
No related merge requests found
Pipeline
#25806
failed
6 years ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ci/bootstrap.sh
+17
-16
17 additions, 16 deletions
ci/bootstrap.sh
with
17 additions
and
16 deletions
ci/bootstrap.sh
+
17
−
16
View file @
f22845d6
...
@@ -36,6 +36,18 @@ run_cmd() {
...
@@ -36,6 +36,18 @@ run_cmd() {
fi
fi
}
}
# Checks just if the variable is defined and has non-zero length
check_defined
()
{
if
[
-z
"
${
!1+abc
}
"
]
;
then
log_error
"Variable
${
1
}
is undefined - aborting..."
;
exit
1
elif
[
-z
"
${
!1
}
"
]
;
then
log_error
"Variable
${
1
}
is zero-length - aborting..."
;
exit
1
fi
log_info
"
${
1
}
=
${
!1
}
"
}
# merges conda cache folders
# merges conda cache folders
# $1: Path to the main cache to keep. The directory must exist.
# $1: Path to the main cache to keep. The directory must exist.
# $2: Path to the extra cache to be merged into main cache
# $2: Path to the extra cache to be merged into main cache
...
@@ -45,24 +57,15 @@ merge_conda_cache() {
...
@@ -45,24 +57,15 @@ merge_conda_cache() {
_urlstxt
=
"
${
1
}
/urls.txt"
_urlstxt
=
"
${
1
}
/urls.txt"
if
[
-e
${
2
}
]
;
then
if
[
-e
${
2
}
]
;
then
log_info
"Merging urls.txt and packages with cached files..."
log_info
"Merging urls.txt and packages with cached files..."
mv
${
2
}
/
*
.tar.bz2
${
1
}
/
run_cmd
mv
${
2
}
/
pkgs/
*
.tar.bz2
${
1
}
/
pkgs
cat
${
_urlstxt
}
${
_cached_urlstxt
}
|
sort
|
uniq
>
${
_urlstxt
}
cat
${
_urlstxt
}
${
_cached_urlstxt
}
|
sort
|
uniq
>
${
_urlstxt
}
log_info
"Moving conda-bld packages (artifacts)..."
run_cmd
mv
${
2
}
/conda-bld
${
1
}
run_cmd conda index
${
1
}
/conda-bld
fi
fi
fi
fi
}
}
# Checks just if the variable is defined and has non-zero length
check_defined
()
{
if
[
-z
"
${
!1+abc
}
"
]
;
then
log_error
"Variable
${
1
}
is undefined - aborting..."
;
exit
1
elif
[
-z
"
${
!1
}
"
]
;
then
log_error
"Variable
${
1
}
is zero-length - aborting..."
;
exit
1
fi
log_info
"
${
1
}
=
${
!1
}
"
}
# installs a miniconda installation.
# installs a miniconda installation.
# $1: Path to where to install miniconda.
# $1: Path to where to install miniconda.
install_miniconda
()
{
install_miniconda
()
{
...
@@ -93,7 +96,7 @@ install_miniconda() {
...
@@ -93,7 +96,7 @@ install_miniconda() {
run_cmd bash miniconda.sh
-b
-p
${
1
}
run_cmd bash miniconda.sh
-b
-p
${
1
}
# Put back cache and merge urls.txt
# Put back cache and merge urls.txt
merge_conda_cache
${
1
}
/pkgs
${
1
}
.cached
/pkgs
merge_conda_cache
${
1
}
${
1
}
.cached
# remove the backup cache folder
# remove the backup cache folder
rm
-rf
${
1
}
.cached
rm
-rf
${
1
}
.cached
...
@@ -133,9 +136,7 @@ CONDA_CLI_CHANNELS="-c ${CONDA_CHANNEL_ROOT} -c defaults"
...
@@ -133,9 +136,7 @@ CONDA_CLI_CHANNELS="-c ${CONDA_CHANNEL_ROOT} -c defaults"
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
run_cmd
${
CONDA_ROOT
}
/bin/conda index
${
CONDA_ROOT
}
/conda-bld
CONDA_CLI_CHANNELS
=
"-c
${
CONDA_ROOT
}
/conda-bld
${
CONDA_CLI_CHANNELS
}
"
CONDA_CLI_CHANNELS
=
"-c
${
CONDA_ROOT
}
/conda-bld
${
CONDA_CLI_CHANNELS
}
"
run_cmd
ls
-l
${
CONDA_ROOT
}
/conda-bld/
run_cmd
${
CONDA_ROOT
}
/bin/conda create
-n
"
${
2
}
"
--override-channels
${
CONDA_CLI_CHANNELS
}
bob.devtools
run_cmd
${
CONDA_ROOT
}
/bin/conda create
-n
"
${
2
}
"
--override-channels
${
CONDA_CLI_CHANNELS
}
bob.devtools
elif
[
"
${
1
}
"
==
"beta"
]
||
[
"
${
1
}
"
==
"stable"
]
;
then
elif
[
"
${
1
}
"
==
"beta"
]
||
[
"
${
1
}
"
==
"stable"
]
;
then
run_cmd
${
CONDA_ROOT
}
/bin/conda create
-n
"
${
2
}
"
--override-channels
${
CONDA_CLI_CHANNELS
}
bob.devtools
run_cmd
${
CONDA_ROOT
}
/bin/conda create
-n
"
${
2
}
"
--override-channels
${
CONDA_CLI_CHANNELS
}
bob.devtools
...
...
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