-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
CI: Use Node.js version 20 #1177
Conversation
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 about the Node version in the Docker file?
Previous way to install Node is deprecated. Update to install Node according to the docs: https://github.com/nodesource/distributions
For some reason CodeQL is complaining about not finding the C++ code.. As per the logs of the action it builds mediasoup correctly. |
I'd just ignore it. It cannot be related to this PR. We can investigate later and even remove it if whatever it complains about is not easy to fix. |
As per the docs, it seems that the code needs to be compiled by the action (it seems weird to me, but..). I've just disabled the prebuilt download and giving it a try. EDIT: Docs |
That fixed it. Now trying to fix a issue (present in V3 already) about not being able to remove |
This reverts commit 8065234.
I've read those docs and I don't get it. What does it mean that you have disabled the prebuilt download and give it a try? |
Which code? Is this about prebuilt worker binaries or what? Also, we do obviously compile those... |
The C++ code.... We were not compiling it within the CodeQL workflow because we were downloading the prebuilt binaries instead. Try removing the change I added in the workflow file to see the logs. |
@@ -36,6 +36,9 @@ jobs: | |||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] | |||
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support | |||
|
|||
env: | |||
MEDIASOUP_SKIP_WORKER_PREBUILT_DOWNLOAD: "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.
Wow I completely missed this!
No description provided.