circleci.py 755 B

1234567891011121314151617181920212223242526
  1. # This Source Code Form is subject to the terms of the Mozilla Public
  2. # License, v. 2.0. If a copy of the MPL was not distributed with this
  3. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  4. ENVIRONMENT_VARIABLES = [
  5. 'CIRCLE_PROJECT_USERNAME',
  6. 'CIRCLE_PROJECT_REPONAME',
  7. 'CIRCLE_BRANCH',
  8. 'CIRCLE_TAG',
  9. 'CIRCLE_SHA1',
  10. 'CIRCLE_REPOSITORY_URL',
  11. 'CIRCLE_COMPARE_URL',
  12. 'CIRCLE_BUILD_URL',
  13. 'CIRCLE_BUILD_NUM',
  14. 'CIRCLE_PREVIOUS_BUILD_NUM',
  15. 'CI_PULL_REQUESTS',
  16. 'CI_PULL_REQUEST',
  17. 'CIRCLE_ARTIFACTS',
  18. 'CIRCLE_USERNAME',
  19. 'CIRCLE_TEST_REPORTS',
  20. 'CIRCLE_PR_USERNAME',
  21. 'CIRCLE_PR_REPONAME',
  22. 'CIRCLE_PR_NUMBER',
  23. 'CIRCLE_NODE_TOTAL',
  24. 'CIRCLE_NODE_INDEX',
  25. 'CIRCLE_BUILD_IMAGE']