Skip to content

boards: rename native64 -> native #27488

boards: rename native64 -> native

boards: rename native64 -> native #27488

Triggered via pull request December 21, 2024 00:23
Status Success
Total duration 2m 43s
Artifacts

static-test.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

11 warnings
static-tests
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
static-tests: core/thread.c#L264
Uncrustify proposes the following patch: --- a/core/thread.c +++ b/core/thread.c @@ -257,8 +257,8 @@ kernel_pid_t thread_create(char *stack, int stacksize, uint8_t priority, * Make sure the TLS area is aligned as required and that the * resulting stack will also be aligned as required */ - thread->tls = (void *) ((uintptr_t) tls & ~ (TLS_ALIGN - 1)); - stacksize = (char *) thread->tls - stack; + thread->tls = (void *)((uintptr_t)tls & ~(TLS_ALIGN - 1)); + stacksize = (char *)thread->tls - stack; _init_tls(thread->tls); #endif
static-tests: dist/tools/ci/build_and_test.sh#L22
Double quote to prevent globbing and word splitting. [SC2086]
static-tests: dist/tools/ci/build_and_test.sh#L23
Double quote to prevent globbing and word splitting. [SC2086]
static-tests: dist/tools/ci/build_and_test.sh#L32
Double quote to prevent globbing and word splitting. [SC2086]
static-tests: dist/tools/ci/build_and_test.sh#L33
Check exit code directly with e.g. 'if ! mycmd;', not indirectly with $?. [SC2181]
static-tests: dist/tools/ci/build_and_test.sh#L53
Expressions don't expand in single quotes, use double quotes for that. [SC2016]
static-tests: dist/tools/ci/build_and_test.sh#L59
Expressions don't expand in single quotes, use double quotes for that. [SC2016]
static-tests: dist/tools/ci/build_and_test.sh#L63
Double quote to prevent globbing and word splitting. [SC2086]
static-tests: examples/suit_update/tests-with-config/check-config.sh#L28
Expansions inside ${..} need to be quoted separately, otherwise they match as patterns. [SC2295]
static-tests: examples/suit_update/tests-with-config/check-config.sh#L33
Expansions inside ${..} need to be quoted separately, otherwise they match as patterns. [SC2295]