summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-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