Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix atom building script #413

Merged
merged 13 commits into from
Mar 4, 2025
Merged

fix: fix atom building script #413

merged 13 commits into from
Mar 4, 2025

Conversation

KazuCocoa
Copy link
Member

@KazuCocoa KazuCocoa commented Mar 4, 2025

  • moves to mjs
  • fix logger
  • add quick bazel version check (required vs current local)

I assume the primary intention of SELENIUM_BRANCH and SELENIUM_GITHUB are to keep current latest built target in code, so probably it makes sense to keep them in code while allowing us to give an arbitrary pair of them via env var makes sense to build without code changes.

@KazuCocoa KazuCocoa changed the title chore: fix atom building script fix: fix atom building script Mar 4, 2025
@@ -6,9 +6,9 @@ export function createRemoteDebugger<T extends boolean> (
opts: T extends true ? RemoteDebuggerRealDeviceOptions : RemoteDebuggerOptions,
realDevice: T
): T extends true ? RemoteDebuggerRealDevice : RemoteDebugger {
// @ts-ignore TS does not understand that
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line kept showing below here...:

> appium-remote-debugger@12.1.6 build
> tsc -b

index.ts:12:7 - error TS2322: Type 'RemoteDebugger' is not assignable to type 'T extends true ? RemoteDebuggerRealDevice : RemoteDebugger'.

12     : new RemoteDebugger(opts);
         ~~~~~~~~~~~~~~~~~~~~~~~~

const {stdout, stderr} = await exec('bazel', ['--version']);
if (stderr) {
throw new Error(`Please setup Bazel ${bazelVersion} runtime environment. ` +
`Current environment got ${stderr} with 'bazel --version' call.`);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure if the actual stderr would look readable as part of the error message. I usually put such things to the very end of a sentence after a colon, for example ...Original error: ${stderr}

`Current environment got ${stderr} with 'bazel --version' call.`);
}
// e.g. "bazel 7.4.1"
const currentBazelVersion = stdout.trim().split(' ')[1];
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure if it would make more sense to use semver for this purpose

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yea, I'm not sure Bazel keeps maintaining them with semiver, so currently I did complete match only

const bazelVersion = (await fs.readFile(BAZEL_VERSION, 'utf8')).trim();
const {stdout, stderr} = await exec('bazel', ['--version']);
if (stderr) {
throw new Error(`Please setup Bazel ${bazelVersion} runtime environment. ` +
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe we could also provide a help URL here on how to deploy bazel using, for example, brew

await exec('bazel', ['build', target], {cwd: SELENIUM_DIRECTORY});
}
log(`Bazel builds complete`);
log.info(`Bazel builds complete`);
}

async function atomsCopyAtoms (atomsDir, fileFilter = () => true) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it might be useful to annotate these functions with jsdoc types

try {
result = await exec('bazel', ['--version']);
} catch (e) {
throw new Error(`Bazel version check with 'bazel --version' got an error: ${e}`);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

perhaps it would be more useful to replace ${e} with ${e.stderr || e.message}

@@ -118,27 +119,28 @@ async function atomsCopyAtoms (atomsDir, fileFilter = () => true) {
// convert - to _ for backwards compatibility with old atoms
const newFileName = path.basename(file).replace('-ios', '').replace(/-/g, '_');
const to = path.join(ATOMS_DIRECTORY, newFileName);
log(`Copying ${file} to ${to}`);
log.info(`Copying ${file} to ${to}`);
// delete an existing file if it was put here by an earlier run of the function, to enable
// overwriting
try {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe this whole try/catch could be replaced with rimraf

This reverts commit 53e18ee.
/**
* Copy atoms in bazel built result to 'atoms' in this repository's main 'atoms' place.
* @param {string} atomsDir
* @param {string} fileFilter
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fileFilter is a function

@KazuCocoa KazuCocoa merged commit adb6f15 into master Mar 4, 2025
9 checks passed
@KazuCocoa KazuCocoa deleted the script branch March 4, 2025 18:28
github-actions bot pushed a commit that referenced this pull request Mar 4, 2025
## [12.1.7](v12.1.6...v12.1.7) (2025-03-04)

### Bug Fixes

* fix atom building script ([#413](#413)) ([adb6f15](adb6f15))
Copy link

github-actions bot commented Mar 4, 2025

🎉 This PR is included in version 12.1.7 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants