-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adapt original Zephyr repo to NCS, including the manifest and the doc. Signed-off-by: Carles Cufi <[email protected]> Signed-off-by: Markus Tacker <[email protected]> Signed-off-by: Pekka Niskanen <[email protected]> Signed-off-by: Jamie McCrae <[email protected]> Signed-off-by: Vinayak Kariappa Chettimada <[email protected]> Signed-off-by: Gerard Marull-Paretas <[email protected]>
- Loading branch information
1 parent
de6af00
commit 0055471
Showing
12 changed files
with
86 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Build and test app in NCS docker container | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
build-and-test-in-docker: | ||
runs-on: ubuntu-22.04 | ||
container: ghcr.io/nrfconnect/sdk-nrf-toolchain:v2.7.99 | ||
defaults: | ||
run: | ||
# Bash shell is needed to set toolchain related environment variables in docker container | ||
# It is a workaround for GitHub Actions limitation https://github.com/actions/runner/issues/1964 | ||
shell: bash | ||
steps: | ||
- name: Checkout repository with example application | ||
uses: actions/checkout@v4 | ||
with: | ||
path: example-application | ||
|
||
- name: Prepare west project | ||
run: | | ||
west init -l example-application | ||
west update -o=--depth=1 -n | ||
- name: Build firmware | ||
working-directory: example-application | ||
run: | | ||
west twister -T app -v --inline-logs --integration | ||
- name: Store hex files | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: built-applications | ||
path: example-application/twister-out/**/zephyr/zephyr.hex | ||
|
||
- name: Twister Tests | ||
working-directory: example-application | ||
run: | | ||
west twister -T tests -v --inline-logs --integration |
This file was deleted.
Oops, something went wrong.
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @gmarull @carlescufi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Introduction | ||
|
||
This is the Doxygen documentation for [example-application]. | ||
This is the Doxygen documentation for [ncs-example-application]. | ||
|
||
[example-application]: https://github.com/zephyrproject-rtos/example-application | ||
[ncs-example-application]: https://github.com/nrfconnect/ncs-example-application |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters