-
Notifications
You must be signed in to change notification settings - Fork 150
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
lookup: re-add fastify #973
Conversation
@Trott how can I test this in CITGM smoker? |
EDIT: It looks like the below stuff didn't work so I guess I didn't quite get it right. The GIT_REMOTE_REF probably refers to the nodejs/node repository and not the nodejs/citgm repository..... If I didn't make any mistakes, it's running here: https://ci.nodejs.org/view/Node.js-citgm/job/citgm-smoker/3227/ Here are the steps I took to do it:
|
Maybe someone on @nodejs/citgm knows the right thing to do to test this PR? |
If you want to use the Jenkins job, use the CITGM parameter: |
New run passed: https://github.com/nodejs/citgm/actions/runs/6148435347 |
Let's see what the smoker says: https://ci.nodejs.org/view/Node.js-citgm/job/citgm-smoker/3230/. |
Codecov ReportAll modified lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #973 +/- ##
=======================================
Coverage 96.44% 96.44%
=======================================
Files 28 28
Lines 2139 2139
=======================================
Hits 2063 2063
Misses 76 76 ☔ View full report in Codecov by Sentry. |
lib/lookup.json
Outdated
"fastify": { | ||
"maintainers": ["mcollina"], | ||
"prefix": "v", | ||
"skip": ["s390x", "aix", "aix72-ppc64"], |
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.
"skip": ["s390x", "aix", "aix72-ppc64"], | |
"skip": ["s390x", "aix"], |
You don't need aix72-ppc64
if aix
is also in this set. Skips are only considered for citgm-all
-- if you're running citgm <module>
CITGM assumes you wanted to run for that module.
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.
Ah awesome, so I don't need a full green run.
Hello, I'm investigating the failing tests, tackling one by one. For example this one https://github.com/fastify/fastify/blob/main/test/custom-http-server.test.js#L11 Looks like it gets timeout on dns lookup const localAddresses = await dns.lookup('localhost', { all: true }) I'm adding more logs to get information, btw, what the dns lookup is suppose to return in those machines? |
Signed-off-by: Matteo Collina <[email protected]>
@targos can you confirm everything is passing correctly? I think we got there eventually. |
LGTM |
No description provided.