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.
 

28 lines
839 B

// https://www.appveyor.com/docs/environment-variables
module.exports = {
detect({env}) {
return Boolean(env.APPVEYOR);
},
configuration({env}) {
const pr = env.APPVEYOR_PULL_REQUEST_NUMBER;
const isPr = Boolean(pr);
return {
name: 'Appveyor',
service: 'appveyor',
commit: env.APPVEYOR_REPO_COMMIT,
tag: env.APPVEYOR_REPO_TAG_NAME,
build: env.APPVEYOR_BUILD_NUMBER,
buildUrl: `https://ci.appveyor.com/project/${env.APPVEYOR_PROJECT_SLUG}/build/${env.APPVEYOR_BUILD_VERSION}`,
branch: env.APPVEYOR_REPO_BRANCH,
job: env.APPVEYOR_JOB_NUMBER,
jobUrl: `https://ci.appveyor.com/project/${env.APPVEYOR_PROJECT_SLUG}/build/job/${env.APPVEYOR_JOB_ID}`,
pr,
isPr,
prBranch: env.APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH,
slug: env.APPVEYOR_REPO_NAME,
root: env.APPVEYOR_BUILD_FOLDER,
};
},
};