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:
108
108
SAMPLES=$(IFS=,; echo "$(cat changed_samples.txt)")
109
109
echo "Running tests for samples: $SAMPLES"
110
110
111
- cd defang-mvp/tools/testing/
112
111
mkdir output
113
112
# concurrency is set to 10 to avoid exhausting our fargate vCPU limits when running
114
113
# kaniko builds, which consume 4 vCPUs each. the limit is currently set to 60--6.5 of
115
114
# 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
117
116
118
117
- name : Upload Output as Artifact
119
118
uses : actions/upload-artifact@v4
120
119
if : success() || steps.run-tests.outcome == 'failure' # Always upload result unless cancelled
121
120
with :
122
121
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