Skip to content

Commit

Permalink
Update manual_test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
silabs-bingocth authored Jul 24, 2024
1 parent 3644e3c commit 6b4025f
Showing 1 changed file with 7 additions and 40 deletions.
47 changes: 7 additions & 40 deletions .github/workflows/manual_test.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
# This workflow will triage pull requests and apply a label based on the
# paths that are modified in the pull request.
#
# To use this workflow, you will need to set up a .github/labeler.yml
# file with configuration. For more information, see:
# https://github.com/actions/labeler

name: Manual Regression Test
on:
workflow_dispatch:
Expand Down Expand Up @@ -64,33 +57,7 @@ on:
- integrated
jobs:
job1:
name: Generate Documents
runs-on: [self-hosted, sqa-ds-hn-003]
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout
uses: actions/[email protected]
with:
ref: "${{ github.event.inputs.branch }}"
- name: Remove Libraries
run: rm -rf EFR32_ICE60730_Libraries
- name: Create directory for Libraries
run: mkdir EFR32_ICE60730_Libraries
- name: Generate Documents with Doxygen
run: doxygen qat.doxygen
- name: Upload Documents
uses: actions/[email protected]
with:
path:
Doc/html/EFR32_ICE60730_Libraries/
warn: Output a warning but do not fail the action
retention-days: 90

job2:
if: (success() || failure()) && github.event.inputs.test_mg12 == 'true'
needs: [job1]
if: github.event.inputs.test_mg12 == 'true'
name: GCC-MG12 regression test
runs-on: [self-hosted, sqa-ds-hn-006]
permissions:
Expand Down Expand Up @@ -156,9 +123,9 @@ jobs:
warn: Output a warning but do not fail the action
retention-days: 90

job3:
job2:
if: (success() || failure()) && github.event.inputs.test_mg24 == 'true'
needs: [job1, job2]
needs: [job1]
name: GCC-MG24 regression test
runs-on: [self-hosted, sqa-ds-hn-006]
permissions:
Expand Down Expand Up @@ -225,9 +192,9 @@ jobs:
warn: Output a warning but do not fail the action
retention-days: 90

job4:
job3:
if: (success() || failure()) && github.event.inputs.test_mg12 == 'true'
needs: [job1, job2, job3]
needs: [job1, job2]
name: IAR-MG12 regression test
runs-on: [self-hosted, sqa-ds-hn-006]
permissions:
Expand Down Expand Up @@ -294,9 +261,9 @@ jobs:
warn: Output a warning but do not fail the action
retention-days: 90

job5:
job4:
if: (success() || failure()) && github.event.inputs.test_mg24 == 'true'
needs: [job1, job2, job3, job4]
needs: [job1, job2, job3]
name: IAR-MG24 regression test
runs-on: [self-hosted, sqa-ds-hn-006]
permissions:
Expand Down

0 comments on commit 6b4025f

Please sign in to comment.