summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorFrédéric Desbiens <[email protected]>2026-03-06 19:27:49 +0100
committerGitHub <[email protected]>2026-03-06 19:27:49 +0100
commit3726d7906b4808bfec7855fc088e073199df9120 (patch)
tree8789bfd03d1d49e1967e80d04aa4ff606fda43eb /.github/workflows
parent4b6e8100d932a3a67b34c6eb17f84f3bffb9e2ae (diff)
parentc3259a216026372e3833dd8996a68f77e8595fbd (diff)
Merge pull request #510 from eclipse-threadx/devv6.5.0.202601_rel
Merge changes ahead of the v6.5.0.202601 release
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci_cortex_m.yml2
-rw-r--r--.github/workflows/regression_template.yml16
2 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/ci_cortex_m.yml b/.github/workflows/ci_cortex_m.yml
index 57e1149b..149490be 100644
--- a/.github/workflows/ci_cortex_m.yml
+++ b/.github/workflows/ci_cortex_m.yml
@@ -47,7 +47,7 @@ jobs:
path: $HOME/arm-none-eabi-gcc-9-2019-q4
key: ${{ runner.os }}-arm-gcc-9-2019-q4
- # Get the arm-non-eabi-gcc toolchain
+ # Get the arm-non-eabi-gcc toolchain
- name: Install arm-none-eabi-gcc
uses: fiam/arm-none-eabi-gcc@v1
if: steps.cache-arm-gcc.outputs.cache-hit != 'true'
diff --git a/.github/workflows/regression_template.yml b/.github/workflows/regression_template.yml
index f2b529f6..205eb5a8 100644
--- a/.github/workflows/regression_template.yml
+++ b/.github/workflows/regression_template.yml
@@ -56,7 +56,7 @@ jobs:
issues: read
checks: write
pull-requests: write
-
+
# The type of runner that the job will run on
runs-on: ubuntu-latest
@@ -66,7 +66,7 @@ jobs:
uses: actions/[email protected]
with:
submodules: true
-
+
- name: Install softwares
run: ${{ inputs.install_script }}
@@ -75,7 +75,7 @@ jobs:
- name: Test
run: ${{ inputs.test_script }}
-
+
- name: Publish Test Results
uses: EnricoMi/[email protected]
if: always()
@@ -83,7 +83,7 @@ jobs:
check_name: Test Results ${{ inputs.result_affix }}
files: |
${{ inputs.cmake_path }}/build/*/*.xml
-
+
- name: Upload Test Results
if: success() || failure()
uses: actions/[email protected]
@@ -93,7 +93,7 @@ jobs:
${{ inputs.cmake_path }}/build/*.txt
${{ inputs.cmake_path }}/build/*/Testing/**/*.xml
${{ inputs.cmake_path }}/build/**/regression/output_files/*.bin
-
+
- name: Configure GitHub Pages
uses: actions/[email protected]
@@ -158,7 +158,7 @@ jobs:
if: (!inputs.skip_deploy && !inputs.skip_coverage)
with:
path: ${{ inputs.cmake_path }}/coverage_report/${{ inputs.coverage_name }}
-
+
deploy_code_coverage:
runs-on: ubuntu-latest
if: ((github.event_name == 'push') || (github.event_name == 'workflow_dispatch')) && !inputs.skip_coverage && !inputs.skip_deploy && !failure() && !cancelled()
@@ -183,7 +183,7 @@ jobs:
with:
path: .
- - name: Delete Duplicate Code Coverage Artifact
+ - name: Delete Duplicate Code Coverage Artifact
uses: geekyeggo/[email protected]
with:
name: coverage_report
@@ -195,7 +195,7 @@ jobs:
- name: Write Code Coverage Report URL
run: >-
if [ "${{ inputs.deploy_list }}" != "" ]; then
- for i in ${{ inputs.deploy_list }}; do
+ for i in ${{ inputs.deploy_list }}; do
echo 'Coverage report for ' $i ':${{ steps.deployment.outputs.page_url }}'$i >> $GITHUB_STEP_SUMMARY
done
else