Skip to content

Commit 3e291c0

Browse files
committed
CI: Bump dependency
Initially, Arm Cortex-A port checks were conducted using 'pwsh' (Windows PowerShell) on a Windows host. To maintain consistency, the continuous integration pipeline shifted to a Linux host. Consequently, this change eliminated the use of Windows PowerShell, which effectively disabled the Arm Cortex-A port checks.
1 parent f999765 commit 3e291c0

5 files changed

Lines changed: 12 additions & 38 deletions

File tree

.github/workflows/ports_arch_check.yml

Lines changed: 6 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
name: ports_arch_check
44

55
# Controls when the action will run. Triggers the workflow on push or pull request
6-
# events but only for the master branch
6+
# events but only for the dev branch
77
on:
88
pull_request:
9-
branches: [ master ]
9+
branches: [ dev ]
1010
paths:
1111
- ".github/workflows/ports_arch_check.yml"
1212
- 'common/**'
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3030
- name: Checkout sources recursively
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v4
3232
with:
3333
token: ${{ secrets.REPO_SCOPED_TOKEN }}
3434
submodules: true
@@ -38,36 +38,10 @@ jobs:
3838
run: |
3939
scripts/copy_armv7_m.sh && scripts/copy_armv8_m.sh && scripts/copy_module_armv7_m.sh
4040
if [[ -n $(git status --porcelain -uno) ]]; then
41-
echo "Ports for ARM architecture is not updated"
41+
echo "Ports for Arm architecture is not updated"
4242
git status
4343
exit 1
4444
fi
4545
46-
cortex-a:
47-
# Check ports for cortex-a
48-
runs-on: windows-latest
49-
50-
# Steps represent a sequence of tasks that will be executed as part of the job
51-
steps:
52-
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
53-
- name: Checkout sources recursively
54-
uses: actions/checkout@v2
55-
with:
56-
token: ${{ secrets.REPO_SCOPED_TOKEN }}
57-
submodules: true
58-
59-
# Copy ports arch
60-
- name: Copy ports arch
61-
run: |
62-
cd ports_arch/ARMv7-A
63-
pwsh -Command ./update.ps1 -PortSets tx -CopyCommonFiles -CopyPortFiles -CopyExample -PatchFiles
64-
cd ../../ports_arch/ARMv8-A
65-
pwsh -Command ./update.ps1 -PortSets tx,tx_smp -CopyCommonFiles -CopyPortFiles -CopyExample -PatchFiles
66-
if ((git status --porcelain -uno) -ne $null) {
67-
Write-Host "Ports for ARM architecture is not updated"
68-
git status
69-
Exit 1
70-
}
71-
72-
73-
46+
# FIXME: Re-enable the checks for Arm Cortex-A
47+
# cortex-a:

.github/workflows/regression_template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
run: ${{ inputs.test_script }}
7878

7979
- name: Publish Test Results
80-
uses: EnricoMi/publish-unit-test-result-action@v2.11.0
80+
uses: EnricoMi/publish-unit-test-result-action@v2.18.0
8181
if: always()
8282
with:
8383
check_name: Test Results ${{ inputs.result_affix }}
@@ -93,7 +93,7 @@ jobs:
9393
${{ inputs.cmake_path }}/build/*.txt
9494
${{ inputs.cmake_path }}/build/*/Testing/**/*.xml
9595
${{ inputs.cmake_path }}/build/**/regression/output_files/*.bin
96-
96+
9797
- name: Configure GitHub Pages
9898
uses: actions/configure-pages@v5.0.0
9999

.github/workflows/regression_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: regression_test
22

33
# Controls when the action will run. Triggers the workflow on push or pull request
4-
# events but only for the master branch
4+
# events but only for the dev branch
55
on:
66
workflow_dispatch:
77
push:
8-
branches: [ master ]
8+
branches: [ dev ]
99
pull_request:
10-
branches: [ master ]
10+
branches: [ dev ]
1111

1212
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1313
jobs:
@@ -53,4 +53,4 @@ jobs:
5353
uses: ./.github/workflows/regression_template.yml
5454
with:
5555
skip_test: true
56-
deploy_list: "ThreadX SMP"
56+
deploy_list: "ThreadX SMP"

test/smp/regression/threadx_smp_resume_suspend_accending_order_test.c renamed to test/smp/regression/threadx_smp_resume_suspend_ascending_order_test.c

File renamed without changes.

test/smp/regression/threadx_smp_resume_suspend_decending_order_test.c renamed to test/smp/regression/threadx_smp_resume_suspend_descending_order_test.c

File renamed without changes.

0 commit comments

Comments
 (0)