From 2e430fc5eb8e304845d9281e2d58942eaaa8af6b Mon Sep 17 00:00:00 2001 From: Ulf Wiger Date: Thu, 5 Oct 2023 11:21:03 +0200 Subject: [PATCH] remove 'build' sublevel --- .circleci/config.yml | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e8d9de3..9b3768d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,21 +16,19 @@ executors: jobs: otp24: - build: - executor: aebuilder - steps: - - checkout - - run: make test - - store_artifacts: - path: _build/test/logs + executor: aebuilder + steps: + - checkout + - run: make test + - store_artifacts: + path: _build/test/logs otp23: - build: - executor: aebuilder23 - steps: - - checkout - - run: make test - - store_artifacts: - path: _build/test/logs + executor: aebuilder23 + steps: + - checkout + - run: make test + - store_artifacts: + path: _build/test/logs workflows: build_and_test: