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 - - -