File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff 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/**
You can’t perform that action at this time.
0 commit comments