From 916f578ba2e7df30feef7f23572fa4aedce0a5fc Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Wed, 10 Feb 2021 15:28:25 -0500 Subject: [PATCH] ci: provide names for nightly E2E jobs The CI size check uses the `e2e-cli` job to retrieve the build artifacts. But with the nightly E2E job having the same name, CircleCI named the regular E2E job `e2e-cli-1` which caused the CI size check to get stuck in a pending state. --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 23b4427823e6..ee8d8a11e07b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -433,10 +433,11 @@ workflows: requires: - setup - e2e-cli: + name: e2e-cli-nightly requires: - build - e2e-cli: - name: e2e-cli-ve + name: e2e-cli-ve-nightly ve: true requires: - build