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

Commit 6a365b6

Browse files
committed
Skip agent samples in AOT mode
1 parent 697840d commit 6a365b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-samples-aot-only.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fi
1212
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
1313
for d in $(find samples -maxdepth 2 -type d | sort -n)
1414
do
15-
if [[ -f "$d/build.sh" && ! -f "$d/.ignore" ]]; then
15+
if [[ -f "$d/build.sh" && ! -f "$d/.ignore" && $d != *-agent ]]; then
1616
if ! (cd "$d" && ./build.sh --aot-only); then
1717
RC=1
1818
fi

0 commit comments

Comments
 (0)