Skip to content

Commit

Permalink
disable caching
Browse files Browse the repository at this point in the history
./dev/test.sh now always call make-all.sh
  • Loading branch information
tribbloid committed Sep 8, 2023
1 parent a4abffb commit c8a4ae3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 0 additions & 2 deletions dev/.CI.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,4 @@ CRDIR="$(
)"

echo "[COMPILING]" && \
"${CRDIR}"/make-all.sh "${@}" && \
echo "[RUNNING TESTS]" && \
"${CRDIR}"/test.sh "${@}"
5 changes: 5 additions & 0 deletions dev/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,10 @@ FWDIR="$(
cd "$(dirname "$0")"/.. || exit
pwd
)"
CRDIR="$(
cd "$(dirname "$0")" || exit
pwd
)"

"${CRDIR}"/make-all.sh "${@}" && \
${FWDIR}/gradlew test "${@}"
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ scalaGroup=org.scala-lang
scalaVersion=2.13.11

org.gradle.parallel=true
org.gradle.caching=true
#org.gradle.caching=true

0 comments on commit c8a4ae3

Please sign in to comment.