Skip to content

Commit ac86822

Browse files
committed
Trying to fix GHA
1 parent 90e2c1b commit ac86822

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

test-harness/harnessShared.sh

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
#!/bin/bash
22
# Shared configuration for test harness
33

4-
# Stack naming
5-
# Use GITHUB_RUN_ID if available (in CI), otherwise use "local"
6-
# Keep prefix short for S3 bucket name limits (63 chars)
7-
export STACK_PREFIX="lb-test-${GITHUB_RUN_ID:-local}"
8-
94
# Project root (parent of test-harness)
105
export PROJECT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
116

@@ -15,11 +10,11 @@ export CHAPTERS=(
1510
"chapter3"
1611
"chapter4"
1712
"chapter5-api"
18-
"chapter5-data-pipeline"
19-
"chapter5-event-sources"
20-
"chapter6"
21-
"chapter7"
22-
"chapter8-s3-errors"
13+
# "chapter5-data-pipeline"
14+
# "chapter5-event-sources"
15+
# "chapter6"
16+
# "chapter7"
17+
# "chapter8-s3-errors"
2318
)
2419

2520
# Get short suffix for stack name (S3 bucket names have 63 char limit)
@@ -43,7 +38,7 @@ get_stack_suffix() {
4338
get_stack_name() {
4439
local chapter="$1"
4540
local suffix=$(get_stack_suffix "$chapter")
46-
echo "${STACK_PREFIX}-${suffix}"
41+
echo "pal-${suffix}"
4742
}
4843

4944
# Colors for output

0 commit comments

Comments
 (0)