Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com>2023-08-02 12:12:45 +0300
committerGitHub <noreply@github.com>2023-08-02 12:12:45 +0300
commit85d2cba801156e507c586621b67d132c6237fec3 (patch)
tree98c8105a9d4f389095d236874fa3ccf00847af18 /.github
parentb51a37314cac084b4c5753f1dfcebd3caf967390 (diff)
Fix warning introduced in PR 730 (#735)
The change addresses the following warning: ``` tasks.c:5549:40: warning: assignment discards 'volatile' qualifier from pointer target type [-Wdiscarded-qualifiers] 5549 | pxTaskStatus->pxTopOfStack = pxTCB->pxTopOfStack; | ``` Also add the "Build Posix_GCC Demo for Coverage Test" in the PR checks as coverage test target treats warnings as errors and therefore, will catch such warnings in PR checks. Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/kernel-demos.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/kernel-demos.yml b/.github/workflows/kernel-demos.yml
index 865f4eefb..79ed8ca02 100644
--- a/.github/workflows/kernel-demos.yml
+++ b/.github/workflows/kernel-demos.yml
@@ -85,6 +85,11 @@ jobs:
working-directory: FreeRTOS/Demo/Posix_GCC
run: make -j
+ - name: Build Posix_GCC Demo for Coverage Test
+ shell: bash
+ working-directory: FreeRTOS/Demo/Posix_GCC
+ run: make -j COVERAGE_TEST=1
+
MSP430-GCC:
name: GNU MSP430 Toolchain
runs-on: ubuntu-latest