From 2fdbbbbf5897fdb47b940cd47f3c9a15e5c40910 Mon Sep 17 00:00:00 2001 From: fborello-lambda Date: Thu, 30 Jan 2025 17:19:14 -0300 Subject: [PATCH] test ci --- .github/workflows/ci_levm.yaml | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/.github/workflows/ci_levm.yaml b/.github/workflows/ci_levm.yaml index a7ffb12b2..7496acb36 100644 --- a/.github/workflows/ci_levm.yaml +++ b/.github/workflows/ci_levm.yaml @@ -18,7 +18,7 @@ env: jobs: ef-test: - name: EF Tests Check + name: Integration Test runs-on: ubuntu-latest steps: - name: Checkout sources @@ -66,7 +66,7 @@ jobs: # Check we don't have a regression against main hive-test: - name: Hive Tests Check + name: Integration Test needs: hive-report-creation runs-on: ubuntu-latest steps: @@ -107,27 +107,6 @@ jobs: exit 1 fi - # The purpose of this job is to add it as a required check in GitHub so that we don't have to add every individual job as a required check - all-tests: - # "Integration Test" is a required check, don't change the name - name: Integration Test - runs-on: ubuntu-latest - needs: [hive-test, ef-test] - # Make sure this job runs even if the previous jobs failed or were skipped - if: ${{ always() && needs.hive-test.result != 'skipped' && needs.ef-test.result != 'skipped' }} - steps: - - name: Check if any job failed - run: | - if [ "${{ needs.hive-test.result }}" != "success" ]; then - echo "Job Hive Tests Check failed" - exit 1 - fi - - if [ "${{ needs.ef-test.result }}" != "success" ]; then - echo "Job EF Tests Check failed" - exit 1 - fi - test: # "Test" is a required check, don't change the name name: Test