it: only rebuild dscanner outside CI
fix windows redirects
This commit is contained in:
parent
d7e15903dd
commit
5d3296cc0b
|
@ -3,14 +3,17 @@
|
||||||
set -eu -o pipefail
|
set -eu -o pipefail
|
||||||
|
|
||||||
DSCANNER_DIR="$(dirname -- $( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ))"
|
DSCANNER_DIR="$(dirname -- $( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ))"
|
||||||
|
|
||||||
|
if [ -z "${CI:-}" ]; then
|
||||||
dub build --root="$DSCANNER_DIR"
|
dub build --root="$DSCANNER_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
cd "$DSCANNER_DIR/tests"
|
cd "$DSCANNER_DIR/tests"
|
||||||
|
|
||||||
# IDE APIs
|
# IDE APIs
|
||||||
# --------
|
# --------
|
||||||
# checking that reporting format stays consistent or only gets extended
|
# checking that reporting format stays consistent or only gets extended
|
||||||
diff <(jq -S . <(../bin/dscanner --report it/source_autofix.d)) <(jq -S . it/source_autofix.report.json)
|
diff <(../bin/dscanner --report it/source_autofix.d | jq -S .) <(jq -S . it/source_autofix.report.json)
|
||||||
diff <(jq -S . <(../bin/dscanner --resolveMessage b16 it/source_autofix.d)) <(jq -S . it/source_autofix.autofix.json)
|
diff <(../bin/dscanner --resolveMessage b16 it/source_autofix.d | jq -S .) <(jq -S . it/source_autofix.autofix.json)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue