-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
drivers: wifi: Move OS agnostic code to nrfxlib #12835
Conversation
The following west manifest projects have been modified in this Pull Request:
Note: This message is automatically posted and updated by the Manifest GitHub Action. |
Test specificationCI/Jenkins/NRF
CI/Jenkins/integration
Detailed information of selected test modules Note: This message is automatically posted and updated by the CI |
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.
+1 for the nrfxlib docset change
Any ideas of CI failure for doc build?
@gmarull @carlescufi any ideas? |
@krish2718 can you try forcing non-parallel build? Add a temp commit doing something like this: diff --git a/.github/workflows/docbuild.yml b/.github/workflows/docbuild.yml
index 6f453075c..d16964c75 100644
--- a/.github/workflows/docbuild.yml
+++ b/.github/workflows/docbuild.yml
@@ -64,7 +64,7 @@ jobs:
- name: Build documentation
working-directory: ncs/nrf
run: |
- cmake -GNinja -Bdoc/_build -Sdoc
+ cmake -GNinja -Bdoc/_build -Sdoc -DSPHINXOPTS="-j 1 -W -T"
ninja -C doc/_build
- name: Prepare archive |
808ae33
to
6a82960
Compare
looks like this is helping, so, should we make this by default at the cost of time? Or debug the issue? |
You can find the documentation preview for this PR at this link. It will be updated about 10 minutes after the documentation build succeeds. Note: This comment is automatically posted by the Documentation Publishing GitHub Action. |
1dde8e7
to
e459705
Compare
bea6333
to
1d5d17b
Compare
The OS agnostic code can be used by any OS, currently Zephyr and Linux are supported, so: * move to nrfxlib as nrf is only for Zephyr. * remove the Zephyr prefix and folder for the remaining files. * remove OSAL files from CODEOWNERS * Move nRF70 drivers docs to nrfxlib (this has only OS agnostic docs) Fixes SHEL-1763. Signed-off-by: Chaitanya Tata <[email protected]>
Add an entry for moving OS agnostic code to nrfxlib. Signed-off-by: Chaitanya Tata <[email protected]>
No description provided.