Skip to content

Commit

Permalink
Move workflows in circleci config (oppia#7587)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlee12 authored and seanlip committed Sep 11, 2019
1 parent 3ccd5b5 commit 07a8683
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
workflows:
version: 2
circleci_tests:
jobs:
- setup
- lint_tests:
requires:
- setup
- typescript_tests:
requires:
- setup
- frontend_tests:
requires:
- setup
- backend_tests:
requires:
- setup

var_for_docker_image: &docker_image circleci/python:2.7.14-jessie-browsers

anchor_for_job_defaults: &job_defaults
Expand Down Expand Up @@ -123,23 +141,6 @@ jobs:
./cc-test-reporter upload-coverage
when: on_success

workflows:
version: 2
circleci_tests:
jobs:
- setup
- lint_tests:
requires:
- setup
- typescript_tests:
requires:
- setup
- frontend_tests:
requires:
- setup
- backend_tests:
requires:
- setup
notify:
webhooks:
# A list of hook hashes, containing the url field
Expand Down

0 comments on commit 07a8683

Please sign in to comment.