From 82e65b9897a23d358075279c452eb44bf9840f7d Mon Sep 17 00:00:00 2001 From: Tom Wiseman Date: Thu, 23 Mar 2023 10:41:06 -0400 Subject: [PATCH] remove yaml --- .circleci/config.yml | 174 ------------------------------------------- .travis.yml | 73 ------------------ 2 files changed, 247 deletions(-) delete mode 100644 .circleci/config.yml delete mode 100644 .travis.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 29a597bc13e..00000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,174 +0,0 @@ -version: 2.1 - -orbs: - slack: circleci/slack@4.2.1 - build-tools: circleci/build-tools@2.9.0 - -jobs: - test: - parameters: - machine-size: - type: string - default: large - build-type: - type: string - build-mysql: - type: string - default: "" - build-mariadb: - type: string - default: "" - build-postgresql: - type: string - default: "" - machine: - image: ubuntu-2004:202010-01 - resource_class: << parameters.machine-size >> - steps: - - run: - name: Halt builds except SBT test suite if there is no PR associated with the commit - command: | - if [[ -z "${CI_PULL_REQUEST}" ]] && [[ "${BUILD_TYPE}" != "sbt" ]] ; then - circleci-agent step halt - fi - - checkout - - run: - name: Custom step - configure GIT identity - command: | - git config user.email "circleci@example.com" - git config user.name "CircleCI" - - build-tools/merge-with-parent: - parent: develop - - restore_cache: - key: sbt-cache - - run: - command: src/ci/bin/test.sh - no_output_timeout: 1h - - run: - name: Do tricks to avoid unnecessary cache updates - command: | - find ~/.ivy2/cache -name "ivydata-*.properties" -print -delete - find ~/.sbt -name "*.lock" -print -delete - - store_test_results: - path: target/test-reports - - save_cache: - key: sbt-cache - paths: - - "~/.ivy2/cache" - - "~/.sbt" - environment: - CIRCLE_COMMIT_RANGE: << pipeline.git.base_revision >>...<< pipeline.git.revision >> - BUILD_TYPE: << parameters.build-type >> - BUILD_MYSQL: << parameters.build-mysql >> - BUILD_MARIADB: << parameters.build-mariadb >> - BUILD_POSTGRESQL: << parameters.build-postgresql >> - -workflows: - all-tests: - jobs: - - test: - name: testSbt - build-type: "sbt" - - test: - name: testSingleWorkflowRunner - build-type: "singleWorkflowRunner" - - test: - name: testDbms - build-type: "dbms" - - test: - name: testHoricromtalDeadlock - build-type: "horicromtalDeadlock" - - test: - name: testDockerScripts - build-type: "dockerScripts" - - test: - name: testReferenceDiskManifestBuilderApp - build-type: "referenceDiskManifestBuilderApp" - - test: - name: testCentaurAws - build-type: "centaurAws" - build-mysql: "5.7" - - test: - name: testCentaurDummy - build-type: "centaurDummy" - build-mysql: "5.7" - - test: - name: testCentaurEngineUpgradeLocal - build-type: "centaurEngineUpgradeLocal" - build-mysql: "5.7" - - test: - name: testCentaurEngineUpgradePapiV2alpha1 - build-type: "centaurEngineUpgradePapiV2alpha1" - build-mysql: "5.7" - - test: - name: testCentaurHoricromtalPapiV2alpha1 - build-type: "centaurHoricromtalPapiV2alpha1" - build-mysql: "5.7" - - test: - name: testCentaurHoricromtalPapiV2beta-MySQL - build-type: "centaurHoricromtalPapiV2beta" - build-mysql: "5.7" - - test: - name: testCentaurHoricromtalPapiV2beta-MariaDB - build-type: "centaurHoricromtalPapiV2beta" - build-mariadb: "10.3" - - test: - name: testCentaurHoricromtalEngineUpgradePapiV2alpha1-MySQL - build-type: "centaurHoricromtalEngineUpgradePapiV2alpha1" - build-mysql: "5.7" - - test: - name: testCentaurHoricromtalEngineUpgradePapiV2alpha1-MariaDB - build-type: "centaurHoricromtalEngineUpgradePapiV2alpha1" - build-mariadb: "10.3" - - test: - name: testCentaurPapiUpgradePapiV2alpha1 - build-type: "centaurPapiUpgradePapiV2alpha1" - build-mysql: "5.7" - - test: - name: testCentaurPapiUpgradeNewWorkflowsPapiV2alpha1 - build-type: "centaurPapiUpgradeNewWorkflowsPapiV2alpha1" - build-mysql: "5.7" - - test: - name: testCentaurLocal-MySQL - build-type: "centaurLocal" - build-mysql: "5.7" - - test: - name: testCentaurLocal-Postgresql - build-type: "centaurLocal" - build-postgresql: "11.3" - - test: - name: testCentaurPapiV2alpha1 - build-type: "centaurPapiV2alpha1" - build-mysql: "5.7" - - test: - name: testCentaurPapiV2beta - build-type: "centaurPapiV2beta" - build-mysql: "5.7" - - test: - name: testCentaurSlurm - build-type: "centaurSlurm" - build-mysql: "5.7" - - test: - name: testCentaurTes - build-type: "centaurTes" - build-mysql: "5.7" - - test: - name: testCentaurWdlUpgradeLocal - build-type: "centaurWdlUpgradeLocal" - build-mysql: "5.7" - - test: - name: testCheckPublish - build-type: "checkPublish" - build-mysql: "5.7" - - test: - name: testConformanceLocal - build-type: "conformanceLocal" - build-mysql: "5.7" - - test: - name: testConformancePapiV2beta - build-type: "conformancePapiV2beta" - build-mysql: "5.7" - - test: - name: testConformanceTesk - build-type: "conformanceTesk" - build-mysql: "5.7" diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 295d133cbaa..00000000000 --- a/.travis.yml +++ /dev/null @@ -1,73 +0,0 @@ -os: linux -dist: focal -services: - - docker -language: minimal -git: - depth: false -cache: - directories: - - $HOME/.ivy2/cache - - $HOME/.coursier/cache - # see cromwell::private::delete_sbt_boot for more info - #- $HOME/.sbt/boot/ -before_cache: - # Tricks to avoid unnecessary cache updates - - find $HOME/.ivy2/cache -name "ivydata-*.properties" -print -delete - - find $HOME/.coursier/cache -name "ivydata-*.properties" -print -delete - - find $HOME/.sbt -name "*.lock" -print -delete -env: - jobs: - # Setting this variable twice will cause the 'script' section to run twice with the respective env var invoked - - >- - BUILD_TYPE=centaurAws - BUILD_MYSQL=5.7 - - >- - BUILD_TYPE=centaurDummy - BUILD_MYSQL=5.7 - - >- - BUILD_TYPE=centaurEngineUpgradeLocal - BUILD_MYSQL=5.7 - # Temporarily keeping until `centaurEngineUpgradePapiV2beta` or similar exists - - >- - BUILD_TYPE=centaurEngineUpgradePapiV2alpha1 - BUILD_MYSQL=5.7 - - >- - BUILD_TYPE=centaurHoricromtalPapiV2beta - BUILD_MYSQL=5.7 - - >- - BUILD_TYPE=centaurLocal - BUILD_MARIADB=10.3 - - >- - BUILD_TYPE=centaurLocal - BUILD_MYSQL=5.7 - - >- - BUILD_TYPE=centaurLocal - BUILD_POSTGRESQL=11.3 - - >- - BUILD_TYPE=centaurPapiV2beta - BUILD_MYSQL=5.7 - - >- - BUILD_TYPE=centaurTes - BUILD_MYSQL=5.7 - - >- - BUILD_TYPE=checkPublish - - >- - BUILD_TYPE=horicromtalDeadlock - - >- - BUILD_TYPE=dbms - - >- - BUILD_TYPE=singleWorkflowRunner - - >- - BUILD_TYPE=referenceDiskManifestBuilderApp -script: - - src/ci/bin/test.sh -notifications: - slack: - rooms: - - secure: B5KYcnhk/ujAUWlHsjzP7ROLm6MtYhaGikdYf6JYINovhMbVKnZCTlZEy7rqT3L2T5uJ25iefD500VQGk1Gn7puQ1sNq50wqjzQaj20PWEiBwoWalcV/nKBcQx1TyFT13LJv8fbFnVPxFCkC3YXoHedx8qAhDs8GH/tT5J8XOC8= - template: - - "Build <%{build_url}|#%{build_number}> (<%{compare_url}|%{commit}>) of %{repository}@%{branch} by %{author} %{result} in %{duration}" - on_success: change - on_failure: change - on_pull_requests: false