-
Notifications
You must be signed in to change notification settings - Fork 285
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: arm rootfs needs an arm linker #5283
Conversation
Dependency ReviewThe following issues were found:
OpenSSF Scorecard
Scanned Files
|
Okay, starting a try! I'll update this comment once it's running...\n |
/try |
Okay, starting a try! I'll update this comment once it's running...\n |
/try |
Okay, starting a try! I'll update this comment once it's running...\n |
@@ -44,7 +44,7 @@ export interface ManagementCreate { | |||
} | |||
|
|||
export interface ManagementOperations { | |||
create?: ManagementCreate, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lol
@@ -19,6 +19,7 @@ import { Debugger } from "./debug.ts"; | |||
import { transpile } from "jsr:@deno/emit"; | |||
import { Debug } from "./debug.ts"; | |||
import * as _worker from "./worker.js"; | |||
import { bundleCode } from "./transpile.ts"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's going on here exactly?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to go from ts -> js so we can build it out as a function to run in the web worker
bin/lang-js/src/transpile.ts
Outdated
|
||
const debug = Debug("langJs:transpile"); | ||
|
||
const LOCK_FILE = "/tmp/lang-js-transpile.lock"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So lang-js will sync now on every transpilation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, that's the idea I'm going for. This is really only a thing in tests and local dev. In prod we run firecracker, so we won't ever have contention on the lang-js binary
/try |
Okay, starting a try! I'll update this comment once it's running...\n |
/try |
Okay, starting a try! I'll update this comment once it's running...\n |
/try |
Okay, starting a try! I'll update this comment once it's running...\n |
I created this link manually in an arm64 rootfs and things started to work