From 9ecd686ad27709a0899592b8d7fca0cca292b390 Mon Sep 17 00:00:00 2001 From: spencergibb Date: Fri, 17 Jan 2025 18:00:24 -0500 Subject: [PATCH] Adds dco.yml --- .circleci/config.yml | 45 -------------------------------------------- .github/dco.yml | 2 ++ 2 files changed, 2 insertions(+), 45 deletions(-) delete mode 100644 .circleci/config.yml create mode 100644 .github/dco.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index c19b50d..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,45 +0,0 @@ -version: 2 -jobs: - build: - machine: - image: ubuntu-1604:202007-01 - environment: - _JAVA_OPTIONS: "-Xms1024m -Xmx2048m" - TERM: dumb - CACHE_VERSION: 2 - branches: - ignore: - - gh-pages # list of branches to ignore - steps: - - checkout - - restore_cache: - key: sc-core-tests-{{ .Environment.CACHE_VERSION }}-{{ .Branch }} - - run: - name: "Download dependencies" - command: ./mvnw -s .settings.xml -U --fail-never dependency:go-offline || true - - save_cache: - key: sc-core-tests-{{ .Environment.CACHE_VERSION }}-{{ .Branch }} - paths: - - ~/.m2 - - run: - name: "Running build" - command: ./scripts/runAcceptanceTests.sh - - run: - name: "Aggregate test results" - when: always - command: | - mkdir -p ~/junit/ - find . -type f -regex ".*/target/.*-reports/.*" -exec cp {} ~/junit/ \; - bash <(curl -s https://codecov.io/bash) - - store_artifacts: - path: ~/junit/ - destination: artifacts - - store_test_results: - path: ~/junit/ - destination: testartifacts - -notify: - webhooks: - # A list of hook hashes, containing the url field - # gitter hook - - url: https://webhooks.gitter.im/e/fac69f6fc000ef14f7ec diff --git a/.github/dco.yml b/.github/dco.yml new file mode 100644 index 0000000..0c4b142 --- /dev/null +++ b/.github/dco.yml @@ -0,0 +1,2 @@ +require: + members: false