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.
 

22 lines
608 B

// https://confluence.atlassian.com/bitbucket/environment-variables-794502608.html
module.exports = {
detect({env}) {
return Boolean(env.BITBUCKET_BUILD_NUMBER);
},
configuration({env}) {
return {
name: 'Bitbucket Pipelines',
service: 'bitbucket',
commit: env.BITBUCKET_COMMIT,
tag: env.BITBUCKET_TAG,
build: env.BITBUCKET_BUILD_NUMBER,
buildUrl: `https://bitbucket.org/${env.BITBUCKET_REPO_SLUG}/addon/pipelines/home#!/results/${
env.BITBUCKET_BUILD_NUMBER
}`,
branch: env.BITBUCKET_BRANCH,
slug: env.BITBUCKET_REPO_SLUG,
root: env.BITBUCKET_CLONE_DIR,
};
},
};