diff --git a/.gitlab/CI/recompile.yml b/.gitlab/CI/recompile.yml index c748ca254d..a6bc634b8e 100644 --- a/.gitlab/CI/recompile.yml +++ b/.gitlab/CI/recompile.yml @@ -4,7 +4,7 @@ - if: $CI_PIPELINE_SOURCE == "merge_request_event" # No '-' here is *very* important: https://docs.gitlab.com/ee/ci/yaml/#complex-rule-clauses changes: - - "**/*.{glsl,png,rs,ron,toml,vox,yml,wav}" + - "**/*.{glsl,png,rs,ron,toml,vox,yml,wav,sh}" - "rust-toolchain" - "Cargo.lock" - ".gitlab-ci.yml" @@ -14,7 +14,7 @@ .recompile: rules: - changes: - - "**/*.{glsl,png,rs,ron,toml,vox,yml,wav}" + - "**/*.{glsl,png,rs,ron,toml,vox,yml,wav,sh}" - "rust-toolchain" - "Cargo.lock" - ".gitlab-ci.yml" \ No newline at end of file diff --git a/.gitlab/scripts/coverage.sh b/.gitlab/scripts/coverage.sh index 30047ff574..1c32381d06 100755 --- a/.gitlab/scripts/coverage.sh +++ b/.gitlab/scripts/coverage.sh @@ -1,6 +1,6 @@ #!/bin/bash echo "modifying files in 5s, ctrl+c to abort" && sleep 5 -rm -r target/debug/incremental/veloren_* || echo "all good" # TMP FIX FOR 2021-03-22-nightly +rm -r target/tarpaulin/incremental/veloren_* || echo "all good" # TMP FIX FOR 2021-03-22-nightly find ./* -name "Cargo.toml" -exec sed -i 's/, "simd"]/]/g' {} \; find ./* -name "Cargo.toml" -exec sed -i 's/"simd"]/]/g' {} \; sed -i 's/vek /#vek /g' ./Cargo.toml;