diff --git a/.gitignore b/.gitignore index ff20920..451b96d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ media +data SECRETS diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5318d2c..0720f61 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 diff --git a/scripts/test-image.sh b/scripts/test-image.sh index 3bb10ec..d168c7d 100755 --- a/scripts/test-image.sh +++ b/scripts/test-image.sh @@ -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} -------------------------------------------------------------------------------