-
Notifications
You must be signed in to change notification settings - Fork 0
wip pr ci #3
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
base: main
Are you sure you want to change the base?
Conversation
|
3 |
8e6c166 to
592affe
Compare
073732d to
ef68276
Compare
CI run PASSED 🟢
Legend
|
CI run PASSED 🟢
Legend
|
CI run PASSED 🟢
Legend
|
Built
|
| Artifact | Board | Core | Tests | RAM | Sketches | Warnings | Errors |
|---|---|---|---|---|---|---|---|
✅ zephyr_contrib |
ek_ra8d1
| 📗 | ✅ |
11.9% |
2 | - | - |
frdm_mcxn947
| 📗 | ✅ |
57.8% |
2 | - | - | |
frdm_rw612
| 📗 | ✅ |
83.0% |
2 | - | - | |
✔️* zephyr_main |
giga
| 📗 | ✅* |
54.4% |
44 | 12 | - |
nano33ble
| 📗 | ✅* |
78.5% |
22 | 8 | - | |
nano_matter
| 📗 | ✔️* |
|
20 | 8 | (2*) | |
niclasense
| 📗 | ✅* |
|
20 | 8 | - | |
opta
| 📗 | ✔️* |
46.6% |
56 | 24 | (4*) | |
portentac33
| 📗 | ✔️* |
|
56 | 24 | (10*) | |
portentah7
| 📗 | ✔️* |
47.2% |
58 | 24 | (4*) | |
❌ zephyr_unoq |
unoq
| 📗 | ❌ |
26.3% |
52 | 8 | 1 |
Legend
Board Test Status description 🔥 🔥 Test run failed to complete. ❌ 🔴 Test completed with unexpected errors. ✔️* 🚫 Test completed with errors, but all are known/expected. ✅* 🟡 Test completed with some warnings; no errors detected. ✅ 🟢 Test passed successfully, with no warnings or errors. 🌑 🌑 Test was skipped.
Caution
zephyr_unoq is blocked due to failures on unoq!
Do not recycle the cache among different board builds, improves cache hit rate. Signed-off-by: Luca Burelli <[email protected]>
Fix various warnings in SPI.cpp Signed-off-by: Luca Burelli <[email protected]>
Add full SPDX support to the build system to generate SPDX documents alongside the build artifacts. Signed-off-by: Luca Burelli <[email protected]>
Properly implement aritfact-specific inclusion and exclusion of libraries in the core packaging script. Signed-off-by: Luca Burelli <[email protected]>
SPI and UART cannot be used together on the Nicla Sense ME as they share the same controller and only one can currently be active. For the moment, prefer to keep UART enabled and disable SPI in the device tree. Signed-off-by: Luca Burelli <[email protected]>
Avoid multiple runs when pushing to branches in your own fork. Only run on pushes to main or pull requests. Signed-off-by: Luca Burelli <[email protected]>
In GitHub Actions, checked out code in a pull_request workflow does check out the merge commit by default, resulting in different SHAs and missed tags. Using GITHUB_HEAD_REF when available ensures that git describe operates on the correct branch or tag ref. Signed-off-by: Luca Burelli <[email protected]>
Instead of compiling a fixed Blink sketch for each board, generate a list of all examples and libraries to compile based on the variant (and core). This allows to skip examples that are not applicable for a given variant (e.g. using hardware features not present on the board), and to add additional libraries and examples to the test suite as required. Signed-off-by: Luca Burelli <[email protected]>
This commit replaces the previous shell script for log inspection with a more comprehensive processing with Python script. The new script provides better organization of test results, including a summary table, detailed per-artifact and per-sketch breakdowns, and improved formatting for readability in GitHub Actions summaries. Job database IDs are now obtained once before log generation instead of once per job, solving API rate limit issues. This also requires an update to compile-sketches for 2 new features: - 'issues-report' generates an 'issues' array in the report with warning/error lines extracted from the compilation stderr; - 'always-succeed' makes the action always exit 0, allowing CI to continue even when some compilations fail. Signed-off-by: Luca Burelli <[email protected]>
Some examples are known to fail on specific variants, and CI should not be permanently marked as failed because of them. This patch adds support for a per-variant list of known failing examples, and marks tests that fail due to these examples as "expected errors", which are logged but do not cause the overall CI run to be marked as failed. Signed-off-by: Luca Burelli <[email protected]>
No description provided.