初始化提交

This commit is contained in:
2026-02-03 16:52:44 +08:00
commit d2f9806384
512 changed files with 65167 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
const branch = process.env.BUILD_SOURCEBRANCH || '';
console.log(branch.replace(/^refs\/tags\//, '')); // eslint-disable-line no-console

View File

@@ -0,0 +1,57 @@
const buildWebDriverAgent = require('./build-webdriveragent');
const { asyncify } = require('asyncbox');
const { fs, logger } = require('@appium/support');
const { exec } = require('teen_process');
const path = require('path');
const log = new logger.getLogger('WDABuild');
async function buildAndUploadWebDriverAgents () {
// Get all xcode paths from /Applications/
const xcodePaths = (await fs.readdir('/Applications/'))
.filter((file) => file.toLowerCase().startsWith('xcode_'));
// Determine which xcodes need to be skipped
let excludedXcodeArr = (process.env.EXCLUDE_XCODE || '').replace(/\s/g, '').split(',');
log.info(`Will skip xcode versions: '${excludedXcodeArr}'`);
for (let xcodePath of xcodePaths) {
if (xcodePath.includes('beta')) {
log.info(`Skipping beta Xcode '${xcodePath}'`);
continue;
}
// Skip if .0 because redundant (example: skip 11.4.0 because it already does 11.4)
const [, , patch] = xcodePath.split('.');
if (patch === '0') {
log.info(`Skipping xcode '${xcodePath}'`);
continue;
}
// Build webdriveragent for this xcode version
log.info(`Running xcode-select for '${xcodePath}'`);
await exec('sudo', ['xcode-select', '-s', `/Applications/${xcodePath}/Contents/Developer`]);
const xcodeVersion = path.parse(xcodePath).name.split('_', 2)[1];
if (excludedXcodeArr.includes(xcodeVersion)) {
log.info(`Skipping xcode version '${xcodeVersion}'`);
continue;
}
log.info('Building webdriveragent for xcode version', xcodeVersion);
try {
await buildWebDriverAgent(xcodeVersion);
} catch (e) {
log.error(`Skipping build for '${xcodeVersion} due to error: ${e}'`);
}
}
// Divider log line
log.info('\n');
}
if (require.main === module) {
asyncify(buildAndUploadWebDriverAgents);
}
module.exports = buildAndUploadWebDriverAgents;