Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
523 B

  1. // https://confluence.atlassian.com/bamboo/bamboo-variables-289277087.html
  2. /* eslint-disable camelcase */
  3. module.exports = {
  4. detect({env}) {
  5. return Boolean(env.bamboo_agentId);
  6. },
  7. configuration({env}) {
  8. return {
  9. name: 'Bamboo',
  10. service: 'bamboo',
  11. commit: env.bamboo_planRepository_1_revision,
  12. build: env.bamboo_buildNumber,
  13. buildUrl: env.bamboo_buildResultsUrl,
  14. branch: env.bamboo_planRepository_1_branchName,
  15. job: env.bamboo_buildKey,
  16. root: env.bamboo_build_working_directory,
  17. };
  18. },
  19. };