Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Commit

Permalink
Skip agent samples in AOT mode
Browse files Browse the repository at this point in the history
  • Loading branch information
sdeleuze committed Jan 2, 2023
1 parent 697840d commit 6a365b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-samples-aot-only.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fi
echo "Date,Sample,Build Time (s),Build Mem (GB),RSS Mem (M),Image Size (M),Startup Time (s),JVM Uptime (s),ReflectConfig (lines)" >> samples-summary.csv
for d in $(find samples -maxdepth 2 -type d | sort -n)
do
if [[ -f "$d/build.sh" && ! -f "$d/.ignore" ]]; then
if [[ -f "$d/build.sh" && ! -f "$d/.ignore" && $d != *-agent ]]; then
if ! (cd "$d" && ./build.sh --aot-only); then
RC=1
fi
Expand Down

0 comments on commit 6a365b6

Please sign in to comment.