diff --git a/__snapshots__/bump-spec.js b/__snapshots__/bump-spec.js index f004f1bfddfc..f9bd3d1682ce 100644 --- a/__snapshots__/bump-spec.js +++ b/__snapshots__/bump-spec.js @@ -1,19 +1,9 @@ exports['list of all projects'] = [ - { - "repo": "cypress-io/cypress-test-tiny", - "provider": "circle", - "platform": "win32" - }, { "repo": "cypress-io/cypress-test-example-repos", "provider": "circle", "platform": "win32" }, - { - "repo": "cypress-io/cypress-test-tiny", - "provider": "circle", - "platform": "linux" - }, { "repo": "cypress-io/cypress-test-module-api", "provider": "circle", @@ -24,11 +14,6 @@ exports['list of all projects'] = [ "provider": "circle", "platform": "linux" }, - { - "repo": "cypress-io/cypress-test-nested-projects", - "provider": "circle", - "platform": "linux" - }, { "repo": "cypress-io/cypress-test-ci-environments", "provider": "circle", @@ -39,11 +24,6 @@ exports['list of all projects'] = [ "provider": "circle", "platform": "linux" }, - { - "repo": "cypress-io/cypress-test-tiny", - "provider": "circle", - "platform": "darwin" - }, { "repo": "cypress-io/cypress-test-example-repos", "provider": "circle", @@ -52,11 +32,6 @@ exports['list of all projects'] = [ ] exports['should have just circle and darwin projects'] = [ - { - "repo": "cypress-io/cypress-test-tiny", - "provider": "circle", - "platform": "darwin" - }, { "repo": "cypress-io/cypress-test-example-repos", "provider": "circle", diff --git a/circle.yml b/circle.yml index ae81e412da23..c292c4913797 100644 --- a/circle.yml +++ b/circle.yml @@ -1940,33 +1940,6 @@ jobs: repo: cypress-example-todomvc browser: firefox - test-binary-against-conduit-chrome: - <<: *defaults - resource_class: medium - steps: - - test-binary-against-repo: - repo: cypress-example-conduit-app - browser: chrome - command: "npm run cypress:run" - wait-on: http://localhost:3000 - - test-binary-against-api-testing-firefox: - <<: *defaults - steps: - - test-binary-against-repo: - repo: cypress-example-api-testing - browser: firefox - command: "npm run cy:run" - - test-binary-against-piechopper-firefox: - <<: *defaults - resource_class: medium - steps: - - test-binary-against-repo: - repo: cypress-example-piechopper - browser: firefox - command: "npm run cypress:run" - test-binary-against-cypress-realworld-app: <<: *defaults resource_class: medium+ @@ -2254,12 +2227,7 @@ linux-workflow: &linux-workflow <<: *mainBuildFilters requires: - create-build-artifacts - # Re-enable when the cypress-example-conduit-app project is fixed. - # https://github.com/cypress-io/cypress-example-conduit-app/issues/346 - # - test-binary-against-conduit-chrome: - # <<: *mainBuildFilters - # requires: - # - create-build-artifacts + - test-binary-against-recipes-firefox: <<: *mainBuildFilters requires: @@ -2272,14 +2240,6 @@ linux-workflow: &linux-workflow <<: *mainBuildFilters requires: - create-build-artifacts - - test-binary-against-api-testing-firefox: - <<: *mainBuildFilters - requires: - - create-build-artifacts - - test-binary-against-piechopper-firefox: - <<: *mainBuildFilters - requires: - - create-build-artifacts - test-binary-against-cypress-realworld-app: <<: *mainBuildFilters requires: @@ -2335,19 +2295,6 @@ mac-workflow: &mac-workflow requires: - darwin-build - - test-binary-against-kitchensink: - name: darwin-test-binary-against-kitchensink - executor: mac - requires: - - darwin-create-build-artifacts - - - test-binary-against-staging: - context: test-runner:record-tests - name: darwin-test-binary-against-staging - executor: mac - requires: - - darwin-create-build-artifacts - - test-binary-and-npm-against-other-projects: context: test-runner:trigger-test-jobs name: darwin-test-binary-and-npm-against-other-projects diff --git a/scripts/binary/bump.js b/scripts/binary/bump.js index b7cc4dd8dd40..8a3cfa0befbc 100644 --- a/scripts/binary/bump.js +++ b/scripts/binary/bump.js @@ -16,19 +16,15 @@ const _PROVIDERS = { circle: { main: 'cypress-io/cypress', linux: [ - 'cypress-io/cypress-test-tiny', 'cypress-io/cypress-test-module-api', 'cypress-io/cypress-test-node-versions', - 'cypress-io/cypress-test-nested-projects', 'cypress-io/cypress-test-ci-environments', 'cypress-io/cypress-test-example-repos', ], darwin: [ - 'cypress-io/cypress-test-tiny', 'cypress-io/cypress-test-example-repos', ], win32: [ - 'cypress-io/cypress-test-tiny', 'cypress-io/cypress-test-example-repos', ], },