Skip to content

Commit

Permalink
Random
Browse files Browse the repository at this point in the history
  • Loading branch information
Vipinofficial11 committed Dec 6, 2023
1 parent 716e2ac commit c0a5511
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# 3) For PRs that are labeled as build and
# - It's a code change
# - A build label was just added
# A bit complex but prevents builds when other labels are manipulated
# A bit complex, but prevents builds when other labels are manipulated
if: >
github.event_name == 'workflow_dispatch'
|| github.event_name == 'push'
Expand Down Expand Up @@ -61,8 +61,9 @@ jobs:
- name: Checkout e2e test repo
uses: actions/checkout@v3
with:
repository: cdapio/cdap-e2e-tests
repository: Vipinofficial11/cdap-e2e-tests
path: e2e
ref: addPluginUploadSkipFlag

- name: Cache
uses: actions/cache@v3
Expand All @@ -74,11 +75,11 @@ jobs:
- name: Run required e2e tests
if: github.event_name != 'workflow_dispatch' && github.event_name != 'push' && steps.filter.outputs.e2e-test == 'false'
run: python3 e2e/src/main/scripts/run_e2e_test.py --module ${{ matrix.tests }} --testRunner TestRunnerRequired.java --skipPluginUpload yes
run: python3 e2e/src/main/scripts/run_cdap_e2e_test.py --module ${{ matrix.tests }} --testRunner TestRunnerRequired.java --skipPluginUpload yes

- name: Run all e2e tests
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' || steps.filter.outputs.e2e-test == 'true'
run: python3 e2e/src/main/scripts/run_e2e_test.py --module ${{ matrix.tests }} --skipPluginUpload yes
run: python3 e2e/src/main/scripts/run_cdap_e2e_test.py --module ${{ matrix.tests }} --skipPluginUpload yes

- name: Upload report
uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2767,7 +2767,7 @@
<module>cdap-distributions</module>
<module>cdap-test</module>
<module>cdap-integration-test</module>
<module>cdap-ui</module>
<!-- <module>cdap-ui</module>-->
<module>cdap-event-common-spi</module>
<module>cdap-event-writer-spi</module>
<module>cdap-event-reader-spi</module>
Expand Down

0 comments on commit c0a5511

Please sign in to comment.