1
0

Switch from 'git clean -fd' to 'git clean -fdx' to remove untracked files

Signed-off-by: James Ketrenos <james.p.ketrenos@intel.com>
This commit is contained in:
James Ketrenos 2020-01-29 10:52:40 -08:00
parent 5214351fdd
commit 2861b457ac
3 changed files with 5 additions and 5 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
media
data
SECRETS

View File

@ -18,7 +18,7 @@ variables:
build_image:
before_script:
- git clean -fd
- git clean -fdx
stage: "build"
script:
- ./scripts/build-dockerfile.sh
@ -32,7 +32,7 @@ build_image:
test_image:
before_script:
- git clean -fd
- git clean -fdx
stage: "test"
script:
- ./scripts/test-image.sh
@ -43,7 +43,7 @@ test_image:
publish_image:
before_script:
- git clean -fd
- git clean -fdx
stage: "publish"
script:
- ./scripts/promote-image.sh

View File

@ -46,12 +46,11 @@ CMD="docker run \
test"
cat << EOF
-------------------------------------------------------------------------------
Running test with:
video group GID: ${VIDEO}
$( [[ "${RENDER}" != "" ]] && echo -e "render group GID: ${RENDER}\n" )
${CMD}
-------------------------------------------------------------------------------