File tree Expand file tree Collapse file tree 1 file changed +6
-11
lines changed
Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change 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)
105export 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() {
4338get_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
You can’t perform that action at this time.
0 commit comments