Page MenuHomePhabricator

[Buildkite] Bump `node` for ESLint/Flow/Jest and JSI CodeGen workflows
AbandonedPublic

Authored by atul on Jan 12 2024, 1:04 PM.
Tags
None
Referenced Files
F4956849: D10622.id35579.diff
Sat, Mar 22, 11:00 AM
Unknown Object (File)
Tue, Mar 18, 6:28 AM
Unknown Object (File)
Sun, Mar 16, 6:35 AM
Unknown Object (File)
Thu, Mar 13, 2:17 PM
Unknown Object (File)
Tue, Mar 11, 3:06 PM
Unknown Object (File)
Fri, Feb 28, 11:57 PM
Unknown Object (File)
Mon, Feb 24, 1:10 AM
Unknown Object (File)
Feb 20 2025, 11:39 PM
Subscribers

Details

Reviewers
ashoat
bartek
Summary
Test Plan

None, we'll know if it fails.

Diff Detail

Repository
rCOMM Comm
Branch
buildkite-node (branched from master)
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

Harbormaster returned this revision to the author for changes because remote builds failed.Jan 12 2024, 1:16 PM
Harbormaster failed remote builds in B25730: Diff 35579!
atul requested review of this revision.Jan 12 2024, 1:19 PM
atul added inline comments.
.buildkite/jsi_codegen.yml
14

We didn't really need to specify which version of Debian here. Defaults to latest version of Debian anyways. These are all aliases for the same thing:

ca8aed.png (120×1 px, 23 KB)

Re. failing Codegen JSI

fatal: detected dubious ownership in repository at '/comm'
To add an exception for this directory, call:
 
	git config --global --add safe.directory /comm

Not sure what started to cause this, but I had the exact same problem with the "gRPC-Web Codegen CI" job and fixed it by adding the following command:

steps:
  - label: 'Foo'
    command:
      - 'git config --global --add safe.directory "*"'
      - ...

Re. failing Codegen JSI

fatal: detected dubious ownership in repository at '/comm'
To add an exception for this directory, call:
 
	git config --global --add safe.directory /comm

Not sure what started to cause this, but I had the exact same problem with the "gRPC-Web Codegen CI" job and fixed it by adding the following command:

steps:
  - label: 'Foo'
    command:
      - 'git config --global --add safe.directory "*"'
      - ...

Oh this is huge, thank you!

It also clarifies a misunderstanding I had with the Emscripten workflow. I'll put up a diff fixing that up as well.