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

// https://confluence.atlassian.com/bamboo/bamboo-variables-289277087.html
/* eslint-disable camelcase */
module.exports = {
detect({env}) {
return Boolean(env.bamboo_agentId);
},
configuration({env}) {
return {
name: 'Bamboo',
service: 'bamboo',
commit: env.bamboo_planRepository_1_revision,
build: env.bamboo_buildNumber,
buildUrl: env.bamboo_buildResultsUrl,
branch: env.bamboo_planRepository_1_branchName,
job: env.bamboo_buildKey,
root: env.bamboo_build_working_directory,
};
},
};