Skip to content

Commit 84d1697

Browse files
remain in same wkdir
1 parent 8850b4b commit 84d1697

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/deploy-changed-samples.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,16 +108,15 @@ jobs:
108108
SAMPLES=$(IFS=,; echo "$(cat changed_samples.txt)")
109109
echo "Running tests for samples: $SAMPLES"
110110
111-
cd defang-mvp/tools/testing/
112111
mkdir output
113112
# concurrency is set to 10 to avoid exhausting our fargate vCPU limits when running
114113
# kaniko builds, which consume 4 vCPUs each. the limit is currently set to 60--6.5 of
115114
# which are used to run the staging stack. So floor((60-6.5)/4) = 13 is our upper limit
116-
./loadtest -c fabric-staging.defang.dev:443 --timeout=15m --concurrency=10 -s $SAMPLES -o output --markdown=true | tee output/summary.log | grep -v '^\s*[-*]' # removes load sample log lines
115+
./tools/testing/loadtest -c fabric-staging.defang.dev:443 --timeout=15m --concurrency=10 -s $SAMPLES -o output --markdown=true | tee output/summary.log | grep -v '^\s*[-*]' # removes load sample log lines
117116
118117
- name: Upload Output as Artifact
119118
uses: actions/upload-artifact@v4
120119
if: success() || steps.run-tests.outcome == 'failure' # Always upload result unless cancelled
121120
with:
122121
name: program-output
123-
path: defang-mvp/tools/testing/output/**
122+
path: output/**

0 commit comments

Comments
 (0)