From 6f4d2e1654072b37768c4e42f6874ef1abbddf17 Mon Sep 17 00:00:00 2001 From: "Kandasamy, Divya" Date: Wed, 18 Sep 2024 15:11:14 -0400 Subject: [PATCH] Update run-standalone-mfos-tests.yml --- .../workflows/run-standalone-mfos-tests.yml | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/run-standalone-mfos-tests.yml b/.github/workflows/run-standalone-mfos-tests.yml index 5240b37c6..a48350887 100644 --- a/.github/workflows/run-standalone-mfos-tests.yml +++ b/.github/workflows/run-standalone-mfos-tests.yml @@ -15,41 +15,41 @@ jobs: uses: actions/checkout@v2 # Run Core tests - # - name: Run Core tests and create assets - # env: - # EVENT_NAME: ${{ github.event_name }} - # GITHUB_REF: ${{ github.ref }} - # PR_HEAD_REF: ${{ github.event.pull_request.head.ref }} - # INTENT: ${{ secrets.INTENT }} - # run: | - # ./.github/workflows/utils.sh runTests core - - # Run Manage tests - - name: Run Manage tests and create assets + - name: Run Core tests and create assets env: EVENT_NAME: ${{ github.event_name }} GITHUB_REF: ${{ github.ref }} PR_HEAD_REF: ${{ github.event.pull_request.head.ref }} INTENT: ${{ secrets.INTENT }} run: | - ./.github/workflows/utils.sh runTests manage + ./.github/workflows/utils.sh runTests core - # Run Discovery tests - - name: Run Discovery tests and create assets + # Run Manage tests + - name: Run Manage tests and create assets env: EVENT_NAME: ${{ github.event_name }} GITHUB_REF: ${{ github.ref }} PR_HEAD_REF: ${{ github.event.pull_request.head.ref }} INTENT: ${{ secrets.INTENT }} run: | - ./.github/workflows/utils.sh runTests discovery + ./.github/workflows/utils.sh runTests manage + + # Run Discovery tests + # - name: Run Discovery tests and create assets + # env: + # EVENT_NAME: ${{ github.event_name }} + # GITHUB_REF: ${{ github.ref }} + # PR_HEAD_REF: ${{ github.event.pull_request.head.ref }} + # INTENT: ${{ secrets.INTENT }} + # run: | + # ./.github/workflows/utils.sh runTests discovery - name: Compress all reports run: | mkdir -p ${{ github.workspace }}/combined-reports cp ${{ github.workspace }}/report/core/report.json ${{ github.workspace }}/combined-reports/core-report.json cp ${{ github.workspace }}/report/manage/report.json ${{ github.workspace }}/combined-reports/manage-report.json - cp ${{ github.workspace }}/report/discovery/report.json ${{ github.workspace }}/combined-reports/discovery-report.json + # cp ${{ github.workspace }}/report/discovery/report.json ${{ github.workspace }}/combined-reports/discovery-report.json tar -czvf combined-reports.tar.gz -C ${{ github.workspace }}/combined-reports . # Upload combined report as an artifact