From 8a9d471274ebf572a79ece2b3e856bceed8c3755 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kjell=20Hedstr=C3=B6m?= Date: Tue, 27 Aug 2024 21:48:26 -0600 Subject: [PATCH] Delete .circleci/config.yml --- .circleci/config.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 9677f418..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: 2.1 -executors: #(1) - exectr: - docker: - - image: cimg/base:edge-20.04 - #docker: - # - image: dockerben/cpptemplate:latest - # example, maybe setup my own image later - # https://thoughts-on-coding.com/2020/04/20/a-cpp-github-template-repository-utilizing-circleci-cmake-docker-and-doxygen/ - # should look into Windows, Ubuntu, OSX executions in parallell with CircleCI ref https://circleci.com/docs/2.0/parallelism-faster-jobs/ -jobs: - build: - executor: exectr #(1) - steps: - - checkout - - run: - name: build_and_run - command: | - ./scripts/buildAndRunTests.sh - - -