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

  1. // http://devcenter.wercker.com/docs/environment-variables/available-env-vars#hs_cos_wrapper_name
  2. module.exports = {
  3. detect({env}) {
  4. return Boolean(env.WERCKER_MAIN_PIPELINE_STARTED);
  5. },
  6. configuration({env}) {
  7. return {
  8. name: 'Wercker',
  9. service: 'wercker',
  10. commit: env.WERCKER_GIT_COMMIT,
  11. build: env.WERCKER_MAIN_PIPELINE_STARTED,
  12. buildUrl: env.WERCKER_RUN_URL,
  13. branch: env.WERCKER_GIT_BRANCH,
  14. slug: `${env.WERCKER_GIT_OWNER}/${env.WERCKER_GIT_REPOSITORY}`,
  15. root: env.WERCKER_ROOT,
  16. };
  17. },
  18. };