Skip to content

Commit

Permalink
update coding convention workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Bich Vu Thi Ngoc committed Oct 9, 2024
1 parent c329283 commit e7fe276
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/generate_firmware.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:
- name: Install Simplicity SDK
if: always()
run: |
mkdir simplicity_studio
cd simplicity_studio
git clone $SIM_REPO
cd simplicity_sdk
ls -la
Expand Down Expand Up @@ -170,6 +172,8 @@ jobs:
- name: Install Simplicity SDK
if: always()
run: |
mkdir simplicity_studio
cd simplicity_studio
git clone $SIM_REPO
cd simplicity_sdk
ls -la
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/integration_test_auto.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
- '**' # matches every branch
env:
REPO_URL: ${{ github.server_url }}/${{ github.repository }}
REPO_BRANCH: ${{ github.event.inputs.branch }}
REPO_NAME: ${{ github.repository }}
REPO_BRANCH: ${{ github.head_ref || github.ref_name }}
REPO_NAME: ${{ github.event.repository.name }}
JLINK_PATH: /opt/SEGGER/JLink/libjlinkarm.so
SDK_PATH: /home/sqa/SimplicityStudio/SDKs/gecko_sdk
jobs:
Expand All @@ -33,8 +33,7 @@ jobs:
steps:
- name: Checkout
uses: actions/[email protected]
with:
ref: "${{ github.event.inputs.branch }}"

- name: Add extension
run: |
cd $SDK_PATH
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/unit_test_auto.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
- '**' # matches every branch
env:
REPO_URL: ${{ github.server_url }}/${{ github.repository }}
REPO_BRANCH: ${{ github.event.inputs.branch }}
REPO_NAME: ${{ github.repository }}
REPO_BRANCH: ${{ github.head_ref || github.ref_name }}
REPO_NAME: ${{ github.event.repository.name }}
JLINK_PATH: /opt/SEGGER/JLink/libjlinkarm.so
SDK_PATH: /home/sqa/SimplicityStudio/SDKs/gecko_sdk
jobs:
Expand All @@ -33,8 +33,7 @@ jobs:
steps:
- name: Checkout
uses: actions/[email protected]
with:
ref: "${{ github.event.inputs.branch }}"

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

0 comments on commit e7fe276

Please sign in to comment.