-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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 namespace.io #31064
CI: use namespace.io #31064
Conversation
@@ -181,7 +180,7 @@ jobs: | |||
run: | | |||
${{ env.RUN }} "source selfdrive/test/setup_xvfb.sh && \ | |||
export MAPBOX_TOKEN='pk.eyJ1Ijoiam5ld2IiLCJhIjoiY2xxNW8zZXprMGw1ZzJwbzZneHd2NHljbSJ9.gV7VPRfbXFetD-1OVF0XZg' && \ | |||
$PYTEST --timeout 40 -m 'not slow' && \ | |||
$PYTEST --timeout 40 -m 'not slow' -n $(nproc) && \ |
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.
why was this changed from auto only here?
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.
the pytest auto only returns 4 even though there are 8 cpus (perhaps something with hyperthreading or docker), im going to bring it up with the namespace people.
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.
-n auto
returns physical cores, maybe there's just 4 hyperthreaded cores. (using logical cores still improves performance in our tests, so maybe we should switch to -n logical
)
fixed the multiarch push, working on my fork: https://github.com/jnewb1/openpilot/actions/runs/7580004107