-
Notifications
You must be signed in to change notification settings - Fork 260
fix(3384): tailcall CLI command not recognized #3396
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
base: main
Are you sure you want to change the base?
Conversation
@@ -33,34 +33,34 @@ jobs: | |||
] | |||
include: | |||
- build: linux-x64-gnu | |||
os: ubuntu-latest | |||
os: ubuntu-22.04 | |||
rust: stable |
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.
ubuntu 24 cause libc issues on older distro such as ubuntu 22
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.
@tusharmath see this
@@ -141,7 +141,7 @@ opentelemetry-appender-tracing = { version = "0.4.0" } | |||
opentelemetry-prometheus = "0.16.0" | |||
phonenumber = "0.3.4" | |||
chrono = "0.4.38" | |||
async-graphql-extension-apollo-tracing = { version = "3.2.15"} | |||
async-graphql-extension-apollo-tracing = { git = "https://github.com/Anshgrover23/async_graphql_apollo_studio_extension", rev = "d89ea0588552c8eb10b7169c012ff3613970126c" } | |||
headers = { workspace = true } |
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.
I have already done a PR upstream to fix the issue async-graphql/async_graphql_apollo_studio_extension#194
@@ -44,7 +44,8 @@ async function genPlatformPackage() { | |||
cpu: [cpu], | |||
} | |||
|
|||
if (libc) platformPackage.libc = [libc] | |||
// Only set libc for non-Windows platforms | |||
if (libc && os !== 'win32') platformPackage.libc = [libc] | |||
|
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.
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.
@tusharmath ,
npm only set libc on non-windows platforms
on windows , libc = undefined
Hey @tusharmath, just a quick follow-up—could you please take a look at my PR when you get a moment? |
Action required: PR inactive for 5 days. |
Summary:
fix: tailcall CLI command not recognized
Issue Reference(s):
Fixes #3384
/claim #3384
Build & Testing:
cargo test
successfully../lint.sh --mode=fix
to fix all linting issues raised by./lint.sh --mode=check
.Checklist:
<type>(<optional scope>): <title>