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 media
data
SECRETS SECRETS

View File

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

View File

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