From b04b821ec7a140631d09931e18ac9eb0ac51df48 Mon Sep 17 00:00:00 2001 From: Laurent Luce Date: Wed, 28 Aug 2024 11:11:05 -0400 Subject: [PATCH] Renaming --- .github/workflows/{ci.yml => ci-base.yml} | 0 .github/workflows/{ci_wip.yml => ci-e2e-tests.yml} | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename .github/workflows/{ci.yml => ci-base.yml} (100%) rename .github/workflows/{ci_wip.yml => ci-e2e-tests.yml} (96%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci-base.yml similarity index 100% rename from .github/workflows/ci.yml rename to .github/workflows/ci-base.yml diff --git a/.github/workflows/ci_wip.yml b/.github/workflows/ci-e2e-tests.yml similarity index 96% rename from .github/workflows/ci_wip.yml rename to .github/workflows/ci-e2e-tests.yml index 8a68396..c52cecc 100644 --- a/.github/workflows/ci_wip.yml +++ b/.github/workflows/ci-e2e-tests.yml @@ -1,5 +1,5 @@ # Our desired pipeline using only a Nix shell environment -name: Check and build Kardinal +name: E2E tests permissions: id-token: write @@ -75,7 +75,7 @@ jobs: run: | tenant_id=${{ steps.tenant.outputs.id }} nodes=$(curl http://localhost:8080/tenant/${tenant_id}/topology | jq -r '.nodes[].id' | tr " " "\n" | sort -g | tr "\n" " " | xargs) - if [ "${nodes} != "cartservice free-currency-api frontend frontend-external postgres productcatalogservice" ]; then exit 1; fi + if [ "${nodes}" != "cartservice free-currency-api frontend frontend-external postgres productcatalogservice" ]; then exit 1; fi - name: Create, validate and delete flow run: |