Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.devtools
Commits
5479143c
Commit
5479143c
authored
Jan 10, 2019
by
André Anjos
💬
Browse files
[ci] Fix if clause on build.sh
parent
9dfa6f36
Pipeline
#25796
failed with stages
in 2 minutes and 41 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
ci/build.sh
View file @
5479143c
...
...
@@ -74,7 +74,11 @@ run_cmd ${CONDA_ROOT}/bin/conda build "--python=${PYTHON_VERSION} --no-anaconda-
# run git clean to clean everything that is not needed. This helps to keep the
# disk usage on CI machines to minimum.
if
[
"
$(
uname
-s
)
"
==
"Linux"
]
;
then
_os
=
"linux"
else
_os
=
"osx"
;
fi
if
[
"
$(
uname
-s
)
"
==
"Linux"
]
;
then
_os
=
"linux"
else
_os
=
"osx"
fi
run_cmd git clean
-ffdx
\
--exclude
=
"miniconda.sh"
\
--exclude
=
"miniconda/pkgs/*.tar.bz2"
\
...
...
Write
Preview
Supports
Markdown
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