From 497ff510592fbc15bdceb8e6a96443fc846196e7 Mon Sep 17 00:00:00 2001 From: Scott Trinh Date: Wed, 3 Apr 2024 09:12:19 -0400 Subject: [PATCH] Do not fail CI on benchmark failues (#934) --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b58080788..c7e6b520e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -113,7 +113,7 @@ jobs: if: ${{ matrix.edgedb-version == '3' || matrix.edgedb-version == 'stable' || matrix.edgedb-version == 'nightly' || matrix.edgedb-version == '5.0-beta.2' }} run: | yarn workspace @edgedb/integration-lts test:ci - yarn workspace @edgedb/integration-lts run bench:types + yarn workspace @edgedb/integration-lts run bench:types || echo "Benchmark types script failed, proceeding anyway." - name: Run query builder integration tests stable if: ${{ matrix.edgedb-version == 'stable' || matrix.edgedb-version == 'nightly' || matrix.edgedb-version == '5.0-beta.2' }}