Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM gradle:9.1.0-jdk25 AS build
FROM gradle:9.5.0-jdk25@sha256:03305b464e024b29cfaad1c4a41fed61d06d15453176d2180f65bd4358b789a6 AS build

WORKDIR /app
COPY --chown=gradle:gradle . /app
RUN gradle -i --stacktrace clean build shadowJar

FROM eclipse-temurin:25
FROM eclipse-temurin:25.0.3_9-jdk@sha256:e23592541431eaeef5c13c84c21db71f97cdca0e70181ea6222ec9bccac24f6c

WORKDIR /opt/analyzer
COPY bin/run.sh bin/run.sh
Expand Down
5 changes: 3 additions & 2 deletions bin/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
exit_code=0

# Iterate over all test directories
for test_dir in $(find tests -name expected_analysis.json | rev | cut -d '/' -f 2- | rev); do
for file in $(find tests -name expected_analysis.json); do
test_dir="${file%/expected_analysis.json}"
test_dir_path=$(realpath "${test_dir}")
test_slug=$(echo "${test_dir}" | awk -F/ '{ print $2 }')

Expand All @@ -30,4 +31,4 @@ for test_dir in $(find tests -name expected_analysis.json | rev | cut -d '/' -f
done
done

exit ${exit_code}
exit ${exit_code}
164 changes: 82 additions & 82 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading