From 8f6944e80658a3d2ae5a183d86fc5881cb811087 Mon Sep 17 00:00:00 2001 From: John Flavin Date: Wed, 5 Jun 2024 15:32:07 -0500 Subject: [PATCH] Remove circleci and gitlab ci files --- .circleci/config.yml | 28 ---------------------------- .gitlab-ci.yml | 21 --------------------- 2 files changed, 49 deletions(-) delete mode 100644 .circleci/config.yml delete mode 100644 .gitlab-ci.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 1f04d3758..000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,28 +0,0 @@ -version: 2 -jobs: - build: - working_directory: ~/container-service - docker: - - image: circleci/openjdk:8 - steps: - - checkout - - restore_cache: - key: cache-{{ .Branch }}-{{ checksum "build.gradle" }} - - run: - name: Refresh dependencies - command: ./gradlew --refresh-dependencies dependencies - - run: - name: Compile - command: ./gradlew compileJava compileTestJava - - save_cache: - key: cache-{{ .Branch }}-{{ checksum "build.gradle" }} - paths: - - ~/.gradle - - setup_remote_docker - - run: - name: Run tests - command: ./gradlew test - - store_test_results: - path: build/test-results/ - - store_artifacts: - path: build/reports/tests/ diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 18a7c8cc7..000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,21 +0,0 @@ ---- -include: - - project: flywheel-io/infrastructure/ci-templates - ref: master - file: security-scans.yml - - template: Jobs/SAST.gitlab-ci.yml - -gemnasium-maven-dependency_scanning: - variables: - DS_JAVA_VERSION: 8 - -variables: - SAST_EXCLUDED_PATHS: "spec, test, tests, tmp, swagger.json" - -sast: - variables: - SAST_EXCLUDED_PATHS: "$SAST_EXCLUDED_PATHS" - stage: test - - -