Skip to content

Commit 11ecc38

Browse files
authored
Cannot find utbot-fuzzers fix (#795)
1 parent 78df295 commit 11ecc38

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/publish-plugin-and-cli-from-branch.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,11 @@ jobs:
5050

5151
- name: Build UTBot IntelliJ IDEA plugin
5252
run: |
53-
gradle buildPlugin --no-daemon -PsemVer=${{ env.VERSION }}
53+
gradle clean buildPlugin --no-daemon -PsemVer=${{ env.VERSION }}
5454
cd utbot-intellij/build/distributions
5555
unzip utbot-intellij-${{ env.VERSION }}.zip
5656
rm utbot-intellij-${{ env.VERSION }}.zip
57+
5758
- name: Archive UTBot IntelliJ IDEA plugin
5859
uses: actions/upload-artifact@v3
5960
with:
@@ -63,7 +64,7 @@ jobs:
6364
- name: Build UTBot CLI
6465
run: |
6566
cd utbot-cli
66-
gradle build --no-daemon -PsemVer=${{ env.VERSION }}
67+
gradle clean build --no-daemon -PsemVer=${{ env.VERSION }}
6768
6869
- name: Archive UTBot CLI
6970
uses: actions/upload-artifact@v3

utbot-cli/build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@ classes {
4949
}
5050

5151
jar {
52-
dependsOn project(':utbot-framework').tasks.jar
53-
dependsOn project(':utbot-summary').tasks.jar
54-
5552
manifest {
5653
attributes 'Main-Class': 'org.utbot.cli.ApplicationKt'
5754
attributes 'Bundle-SymbolicName': 'org.utbot.cli'

0 commit comments

Comments
 (0)