Change summary
.github/workflows/compare_perf.yml | 2 +-
tooling/xtask/src/tasks/workflows/compare_perf.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Detailed changes
@@ -24,7 +24,7 @@ jobs:
run: echo ${{ inputs.base }} ${{ inputs.head }}
shell: bash -euxo pipefail {0}
- name: compare_perf::run_perf::create_results
- run: echo 'Perf is *much* better now' > target/results.md
+ run: mkdir -p target; echo 'Perf is *much* better now' > target/results.md
shell: bash -euxo pipefail {0}
- name: '@actions/upload-artifact results.md'
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
@@ -26,7 +26,7 @@ pub fn run_perf(base: &Input, head: &Input) -> NamedJob {
}
fn create_results() -> Step<Run> {
- named::bash("echo 'Perf is *much* better now' > target/results.md")
+ named::bash("mkdir -p target; echo 'Perf is *much* better now' > target/results.md")
}
named::job(