From 49b3490b8eab1f0e21091da5e58576938bffcb87 Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Mon, 8 Jul 2024 15:08:28 -0600 Subject: [PATCH] Make output dir --- .github/workflows.src/tests-pool.tpl.yml | 6 +++++- .github/workflows/tests-pool.yml | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows.src/tests-pool.tpl.yml b/.github/workflows.src/tests-pool.tpl.yml index 8ec4a2db4d4..fd82b51b019 100644 --- a/.github/workflows.src/tests-pool.tpl.yml +++ b/.github/workflows.src/tests-pool.tpl.yml @@ -33,6 +33,10 @@ jobs: path: pool-simulation token: ${{ secrets.GITHUB_CI_BOT_TOKEN }} + - name: Make output directory + run: | + mkdir -p pool-simulation/reports + <%- call build() -%> - name: Compute cache keys run: | @@ -54,4 +58,4 @@ jobs: branch: main cwd: pool-simulation author_name: github-actions - author_email: 41898282+github-actions[bot]@users.noreply.github.com \ No newline at end of file + author_email: 41898282+github-actions[bot]@users.noreply.github.com diff --git a/.github/workflows/tests-pool.yml b/.github/workflows/tests-pool.yml index 60ba09ef6f4..00bab79043b 100644 --- a/.github/workflows/tests-pool.yml +++ b/.github/workflows/tests-pool.yml @@ -30,6 +30,10 @@ jobs: repository: edgedb/edgedb-pool-simulation path: pool-simulation token: ${{ secrets.GITHUB_CI_BOT_TOKEN }} + + - name: Make output directory + run: | + mkdir -p pool-simulation/reports - uses: actions/checkout@v4 with: fetch-depth: 0