Skip to content

Commit

Permalink
Update 02-Run_Unit_Test.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Silabs-ThieuVu authored Oct 24, 2024
1 parent 2584a73 commit 01be745
Showing 1 changed file with 27 additions and 4 deletions.
31 changes: 27 additions & 4 deletions .github/workflows/02-Run_Unit_Test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,18 @@ on:
description: 'Adapter serial number of MG12'
type: string
default: '440189400'
HOST_TP_MG12:
description: 'Host IP of MG12'
type: string
default: '192.168.1.118'
ADAPTER_SN_MG24:
description: 'Adapter serial number of MG24'
type: string
default: '440133193'
default: '440111030'
HOST_TP_MG24:
description: 'Host IP of MG24'
type: string
default: '192.168.1.69'
env:
REPO_URL: ${{ github.server_url }}/${{ github.repository }}
REPO_BRANCH: ${{ github.head_ref || github.ref_name }}
Expand All @@ -38,11 +46,14 @@ jobs:
TOOL_CHAINS: GCC
TASK: all
COMPONENTS: all
ADAPTER_SN_MG12: ${{ github.event.inputs.ADAPTER_SN_MG12 }} #440189400
ADAPTER_SN_MG24: ${{ github.event.inputs.ADAPTER_SN_MG24 }} #440133193
ADAPTER_SN_MG12: ${{ github.event.inputs.ADAPTER_SN_MG12 }}
HOST_IP_MG12: ${{ github.event.inputs.HOST_IP_MG12 }}
ADAPTER_SN_MG24: ${{ github.event.inputs.ADAPTER_SN_MG24 }}
HOST_IP_MG24: ${{ github.event.inputs.HOST_IP_MG12 }}
CHIP: EFR32MG24BXXXF1536
TOOL_DIRS: /home/sqa/SimplicityStudio-5/SimplicityStudio_v5/developer/toolchains/gnu_arm/12.2.rel1_2023.7/bin
START_ADDR_FLASH: 0x8000000
START_ADDR_FLASH_M12: 0x0000000
START_ADDR_FLASH_M24: 0x8000000

steps:
- name: Trigger
Expand Down Expand Up @@ -101,7 +112,13 @@ jobs:
if [ -z "${{ github.event.inputs.ADAPTER_SN_MG12 }}" ]; then
ADAPTER_SN_MG12=440189400
fi
if [ -z "${{ github.event.inputs.HOST_IP_MG12 }}" ]; then
HOST_IP_MG12=192.168.1.118
fi
export HOST_IP=$HOST_IP_MG12
export FLASH_REGIONS_TEST=$START_ADDR_FLASH_M12
mkdir log_MG12
echo "bash execute_unit_test.sh $BOARD_NAME_MG12 $TASK $COMPONENTS $ADAPTER_SN_MG12 $COMPILER"
bash execute_unit_test.sh $BOARD_NAME_MG12 $TASK $COMPONENTS $ADAPTER_SN_MG12 $COMPILER 2>&1 | tee log_MG12/Unit_Test_MG12.txt
#echo 'bash execute_unit_test.sh $BOARD_NAME $TASK $COMPONENTS $ADAPTER_SN $COMPILER "-DENABLE_CAL_CRC_32=ON"' > log/Test_integration_$BOARD_NAME_GCC_2.txt
#echo 'bash execute_unit_test.sh $BOARD_NAME $TASK $COMPONENTS $ADAPTER_SN $COMPILER "-DENABLE_CRC_USE_SW=ON"' > log/Test_integration_$BOARD_NAME_GCC_3.txt
Expand All @@ -121,7 +138,13 @@ jobs:
if [ -z "${{ github.event.inputs.ADAPTER_SN_MG12 }}" ]; then
ADAPTER_SN_MG12=440189400
fi
if [ -z "${{ github.event.inputs.HOST_IP_MG24 }}" ]; then
HOST_IP_MG24=192.168.1.69
fi
export HOST_IP=$HOST_IP_MG24
export FLASH_REGIONS_TEST=$START_ADDR_FLASH_M24
mkdir log_MG24
echo "bash execute_unit_test.sh $BOARD_NAME_MG24 $TASK $COMPONENTS $ADAPTER_SN_MG24 $COMPILER"
bash execute_unit_test.sh $BOARD_NAME_MG24 $TASK $COMPONENTS $ADAPTER_SN_MG24 $COMPILER 2>&1 | tee log_MG24/Unit_Test_MG24.txt
- name: Upload artifact MG12
uses: actions/[email protected]
Expand Down

0 comments on commit 01be745

Please sign in to comment.