Skip to content

Commit

Permalink
Skip tasks for common modules
Browse files Browse the repository at this point in the history
  • Loading branch information
valb3r committed Jan 6, 2023
1 parent 0ff34e5 commit 48f176f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean build buildPlugin runPluginVerifier jacocoTestReport -x :bpmn-intellij-plugin-commons:listProductsReleases -x :bpmn-intellij-plugin-core:listProductsReleases
run: |
./gradlew clean build buildPlugin runPluginVerifier jacocoTestReport \
-x :bpmn-intellij-plugin-commons:runPluginVerifier \
-x :bpmn-intellij-plugin-core:runPluginVerifier
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build, test with Gradle
run: ./gradlew clean build buildPlugin runPluginVerifier -x :bpmn-intellij-plugin-commons:listProductsReleases -x :bpmn-intellij-plugin-core:listProductsReleases
run: |
./gradlew clean build buildPlugin runPluginVerifier jacocoTestReport \
-x :bpmn-intellij-plugin-commons:runPluginVerifier \
-x :bpmn-intellij-plugin-core:runPluginVerifier
- name: Release plugin(s)
run: ./gradlew publishPlugin
env:
Expand Down

0 comments on commit 48f176f

Please sign in to comment.