From 8478a397bd5bb82d2da9b019fc5272a45cb0b2b0 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Thu, 30 Oct 2025 22:44:37 -0600 Subject: [PATCH] blergh --- .github/workflows/compare_perf.yml | 2 +- tooling/xtask/src/tasks/workflows/compare_perf.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compare_perf.yml b/.github/workflows/compare_perf.yml index fac55be247adf9fb767d6618f884c490ee78ef14..8c6a46cd47aafb8d84e7a7cc6bb0fe969a5a7723 100644 --- a/.github/workflows/compare_perf.yml +++ b/.github/workflows/compare_perf.yml @@ -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 diff --git a/tooling/xtask/src/tasks/workflows/compare_perf.rs b/tooling/xtask/src/tasks/workflows/compare_perf.rs index 60fe2b56da57f18ecad96bb547c3566644fe7dcb..95f42e7cb3391b151e52e09072f53e03e62a1d31 100644 --- a/tooling/xtask/src/tasks/workflows/compare_perf.rs +++ b/tooling/xtask/src/tasks/workflows/compare_perf.rs @@ -26,7 +26,7 @@ pub fn run_perf(base: &Input, head: &Input) -> NamedJob { } fn create_results() -> Step { - 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(