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.
 

19 lines
525 B

// http://devcenter.wercker.com/docs/environment-variables/available-env-vars#hs_cos_wrapper_name
module.exports = {
detect({env}) {
return Boolean(env.WERCKER_MAIN_PIPELINE_STARTED);
},
configuration({env}) {
return {
name: 'Wercker',
service: 'wercker',
commit: env.WERCKER_GIT_COMMIT,
build: env.WERCKER_MAIN_PIPELINE_STARTED,
buildUrl: env.WERCKER_RUN_URL,
branch: env.WERCKER_GIT_BRANCH,
slug: `${env.WERCKER_GIT_OWNER}/${env.WERCKER_GIT_REPOSITORY}`,
root: env.WERCKER_ROOT,
};
},
};