-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Mark zephyr install world-writable in docker image to unblock #7995. #8037
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
Conversation
|
@areusch I'm working on reproducing the issue. |
| # As part of the build process, Zephyr needs to touch some symlinks in zephyr/misc/generated/syscalls_links (this path is relative to the | ||
| # build directory for a project). Mark the zephyr installation world-writable since this is a docker | ||
| # container | ||
| chmod -R o+w /opt/zephyrproject |
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.
maybe change it to ZEPHYR_PROJECT_PATH?
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.
done
Jenkinsfile
Outdated
| ci_i386 = "tlcpack/ci-i386:v0.72-t0" | ||
| ci_qemu = "tlcpack/ci-qemu:v0.04" | ||
| ci_arm = "tlcpack/ci-arm:v0.03" | ||
| ci_lint = "tkonolige/ci-lint:latest" |
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.
revert these to tlcpack?
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.
oops, based on the wrong thing, reverted
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.
oops, based on the wrong thing, reverted
57b338a to
6755c3c
Compare
mehrdadh
left a comment
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.
LGTM.
Thanks @areusch!
Unclear what happened here, but upon rebuilding ci-qemu, lots of:
marking Zephyr world-writable, which should resolve the need for make to touch the syscalls dependencies. This isn't strictly ideal, since a test could make modifications to Zephyr and corrupt following tests, but we have this issue everywhere and I believe Zephyr assumes it is writable when building.
Also remove some commented lines in the install script.