diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 099db02d8a..0000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,64 +0,0 @@ -version: 2.1 - -executors: - docs: - docker: - - image: tendermintdev/docker-website-deployment - environment: - AWS_REGION: us-east-1 - -commands: - make: - parameters: - description: - type: string - target: - type: string - steps: - - attach_workspace: - at: /tmp/workspace - - restore_cache: - name: "Restore source code cache" - keys: - - go-src-v1-{{ .Revision }} - - checkout - - restore_cache: - name: "Restore go modules cache" - keys: - - go-mod-v2-{{ checksum "go.sum" }} - - run: - name: << parameters.description >> - command: | - make << parameters.target >> - -jobs: - build-docs: - executor: docs - steps: - - checkout - - run: - name: "Build docs" - command: make build-docs LEDGER_ENABLED=false - - run: - name: "Upload docs to S3" - command: make sync-docs LEDGER_ENABLED=false - -workflows: - version: 2 - test-suite: - jobs: - - build-docs: - context: docs-deployment-master - filters: - branches: - only: - - docs-staging - - build-docs: - context: docs-deployment-release - filters: - branches: - only: - - master - tags: - only: - - /v.*/ diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 39b5e633ac..492b0e333f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,6 @@ name: Tests / Code Coverage # Tests / Code Coverage workflow runs unit tests and uploads a code coverage report -# This workflow is run on pushes to v2/develop & every Pull Requests where a .go, .mod, .sum have been changed +# This workflow is run on pushes to develop & every Pull Requests where a .go, .mod, .sum have been changed env: GOPRIVATE: "github.com/line/*" @@ -8,7 +8,7 @@ on: pull_request: push: branches: - - v2/develop + - develop jobs: cleanup-runs: runs-on: ubuntu-latest @@ -16,7 +16,7 @@ jobs: - uses: rokroskar/workflow-run-cleanup-action@master env: GITHUB_TOKEN: "${{ secrets.TOKEN }}" - if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/v2/develop'" + if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/develop'" install-tparse: runs-on: ubuntu-latest