Skip to content

Commit fab8295

Browse files
committed
fix silly mkdir mistake
1 parent 3361dd9 commit fab8295

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.gitlab/benchmark.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ run-benchmarks-adp:
173173
when: always
174174
script:
175175
# Do some pre-flight steps like creating directories, installing helper utilities, setting credentials, and so on.
176-
- mkdir outputs && touch outputs/report.md outputs/report.html
176+
- mkdir -p outputs
177177
- ./ci/tooling/configure-smp-aws-credentials.sh
178178
# Download the SMP binary.
179179
- aws --profile ${AWS_NAMED_PROFILE} s3 cp s3://smp-cli-releases/${SMP_VERSION}/x86_64-unknown-linux-musl/smp smp && chmod +x smp
@@ -230,7 +230,7 @@ report-benchmarks-adp:
230230
when: always
231231
script:
232232
# Do some pre-flight steps like creating directories, installing helper utilities, setting credentials, and so on.
233-
- mkdir outputs
233+
- mkdir -p outputs
234234
- ./ci/tooling/configure-smp-aws-credentials.sh
235235
# Download the SMP binary.
236236
- aws --profile ${AWS_NAMED_PROFILE} s3 cp s3://smp-cli-releases/${SMP_VERSION}/x86_64-unknown-linux-musl/smp smp && chmod +x smp
@@ -270,7 +270,7 @@ run-benchmarks-adp-full:
270270
when: always
271271
script:
272272
# Do some pre-flight steps like creating directories, installing helper utilities, setting credentials, and so on.
273-
- mkdir outputs && touch outputs/report.md outputs/report.html
273+
- mkdir -p outputs
274274
- ./ci/tooling/configure-smp-aws-credentials.sh
275275
# Download the SMP binary.
276276
- aws --profile ${AWS_NAMED_PROFILE} s3 cp s3://smp-cli-releases/${SMP_VERSION}/x86_64-unknown-linux-musl/smp smp && chmod +x smp

0 commit comments

Comments
 (0)