Skip to content

Commit

Permalink
Update and rename 04-Integration_Test.yaml to 03-Run_Integration_Test…
Browse files Browse the repository at this point in the history
….yaml
  • Loading branch information
Silabs-ThieuVu authored Oct 16, 2024
1 parent a54bee9 commit 08cf329
Showing 1 changed file with 27 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 04-Integration Test
name: 03-Run Integration Test
on:
pull_request:
branches:
Expand Down Expand Up @@ -35,10 +35,22 @@ jobs:
START_ADDR_FLASH: 0x8000000

steps:
- name: Trigger
run: echo "Triggered by ${{github.event_name}} event"

- name: Check Branch Input
run: |
if [ -z "${{ github.event.inputs.branch }}" ]; then
echo "Branch input is required."
exit 1
fi
echo "Checkout branch ${{ github.event.inputs.branch }}"
- name: Checkout
uses: actions/[email protected]
with:
ref: "${{ github.event.inputs.branch }}"
ref: "${{ github.event.inputs.branch }}"

- name: Add extension
run: |
cd $SDK_PATH
Expand Down Expand Up @@ -104,10 +116,22 @@ jobs:
START_ADDR_FLASH: 0x0000000

steps:
- name: Trigger
run: echo "Triggered by ${{github.event_name}} event"

- name: Check Branch Input
run: |
if [ -z "${{ github.event.inputs.branch }}" ]; then
echo "Branch input is required."
exit 1
fi
echo "Checkout branch ${{ github.event.inputs.branch }}"
- name: Checkout
uses: actions/[email protected]
with:
ref: "${{ github.event.inputs.branch }}"
ref: "${{ github.event.inputs.branch }}"

- name: Add extension
run: |
cd $SDK_PATH
Expand Down

0 comments on commit 08cf329

Please sign in to comment.