Skip to content
Snippets Groups Projects
Commit 40a07e9c authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

FIX: wget does not produce output

parent 08ad7cfe
No related branches found
No related tags found
2 merge requests!217TST: Make NamedTemporaryFiles Windows-compatible,!211F refactor pipe
Pipeline #59723 passed
This commit is part of merge request !211. Comments created here will be created in the context of that merge request.
...@@ -107,7 +107,7 @@ stages: ...@@ -107,7 +107,7 @@ stages:
- if [ -z "$PYLIB" ]; then - if [ -z "$PYLIB" ]; then
if echo "$CI_COMMIT_REF_NAME" | grep -c "^f-" ; then if echo "$CI_COMMIT_REF_NAME" | grep -c "^f-" ; then
echo "Check if pylib has branch $CI_COMMIT_REF_NAME" ; echo "Check if pylib has branch $CI_COMMIT_REF_NAME" ;
if wget https://gitlab.indiscale.com/api/v4/projects/97/repository/branches/${CI_COMMIT_REF_NAME} ; then if wget -O /dev/null https://gitlab.indiscale.com/api/v4/projects/97/repository/branches/${CI_COMMIT_REF_NAME}>/dev/null ; then
PYLIB=$CI_COMMIT_REF_NAME ; PYLIB=$CI_COMMIT_REF_NAME ;
fi; fi;
fi; fi;
...@@ -118,7 +118,7 @@ stages: ...@@ -118,7 +118,7 @@ stages:
- if [ -z "$ADVANCED" ]; then - if [ -z "$ADVANCED" ]; then
if echo "$CI_COMMIT_REF_NAME" | grep -c "^f-" ; then if echo "$CI_COMMIT_REF_NAME" | grep -c "^f-" ; then
echo "Check if advanced user tools have branch $CI_COMMIT_REF_NAME" ; echo "Check if advanced user tools have branch $CI_COMMIT_REF_NAME" ;
if wget https://gitlab.indiscale.com/api/v4/projects/104/repository/branches/${CI_COMMIT_REF_NAME} ; then if wget -O /dev/null https://gitlab.indiscale.com/api/v4/projects/104/repository/branches/${CI_COMMIT_REF_NAME} ; then
ADVANCED=$CI_COMMIT_REF_NAME ; ADVANCED=$CI_COMMIT_REF_NAME ;
fi; fi;
fi; fi;
...@@ -265,6 +265,7 @@ build-testenv: ...@@ -265,6 +265,7 @@ build-testenv:
- pushes - pushes
needs: [] needs: []
script: script:
- *env
- df -h - df -h
- command -v wget - command -v wget
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment