From 61f2260e2375aa7d7f027a20d412285acdb4ecdc Mon Sep 17 00:00:00 2001 From: Maksim Pelevin Date: Fri, 26 Aug 2022 12:14:53 +0300 Subject: [PATCH 1/4] Cannot find utbot-fuzzing.jar fix --- utbot-cli/build.gradle | 3 --- 1 file changed, 3 deletions(-) diff --git a/utbot-cli/build.gradle b/utbot-cli/build.gradle index c467722549..9420217bf0 100644 --- a/utbot-cli/build.gradle +++ b/utbot-cli/build.gradle @@ -49,9 +49,6 @@ classes { } jar { - dependsOn project(':utbot-framework').tasks.jar - dependsOn project(':utbot-summary').tasks.jar - manifest { attributes 'Main-Class': 'org.utbot.cli.ApplicationKt' attributes 'Bundle-SymbolicName': 'org.utbot.cli' From 0011c8e130061489989a7830dfdfc6a19e24610f Mon Sep 17 00:00:00 2001 From: Victoria <32179813+victoriafomina@users.noreply.github.com> Date: Fri, 26 Aug 2022 13:28:33 +0300 Subject: [PATCH 2/4] gradle build -> gradle clean build --- .github/workflows/publish-plugin-and-cli-from-branch.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-plugin-and-cli-from-branch.yml b/.github/workflows/publish-plugin-and-cli-from-branch.yml index 7925bbd45e..273676e9a3 100644 --- a/.github/workflows/publish-plugin-and-cli-from-branch.yml +++ b/.github/workflows/publish-plugin-and-cli-from-branch.yml @@ -50,7 +50,7 @@ jobs: - name: Build UTBot IntelliJ IDEA plugin run: | - gradle buildPlugin --no-daemon -PsemVer=${{ env.VERSION }} + gradle clean buildPlugin --no-daemon -PsemVer=${{ env.VERSION }} cd utbot-intellij/build/distributions unzip utbot-intellij-${{ env.VERSION }}.zip rm utbot-intellij-${{ env.VERSION }}.zip @@ -63,7 +63,7 @@ jobs: - name: Build UTBot CLI run: | cd utbot-cli - gradle build --no-daemon -PsemVer=${{ env.VERSION }} + gradle clean build --no-daemon -PsemVer=${{ env.VERSION }} - name: Archive UTBot CLI uses: actions/upload-artifact@v3 From ef9bcb0102aff153b262d5d805bcd4014f903bf1 Mon Sep 17 00:00:00 2001 From: Maksim Pelevin Date: Fri, 26 Aug 2022 14:03:54 +0300 Subject: [PATCH 3/4] Remove test from build --- .github/workflows/publish-plugin-and-cli-from-branch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-plugin-and-cli-from-branch.yml b/.github/workflows/publish-plugin-and-cli-from-branch.yml index 273676e9a3..e0e1639960 100644 --- a/.github/workflows/publish-plugin-and-cli-from-branch.yml +++ b/.github/workflows/publish-plugin-and-cli-from-branch.yml @@ -63,7 +63,7 @@ jobs: - name: Build UTBot CLI run: | cd utbot-cli - gradle clean build --no-daemon -PsemVer=${{ env.VERSION }} + gradle clean build -x test --no-daemon -PsemVer=${{ env.VERSION }} - name: Archive UTBot CLI uses: actions/upload-artifact@v3 From 95ddb3987bfc817144c90d2cc8b1abcabb58ed51 Mon Sep 17 00:00:00 2001 From: Victoria <32179813+victoriafomina@users.noreply.github.com> Date: Fri, 26 Aug 2022 14:37:09 +0300 Subject: [PATCH 4/4] Remove `-x test` --- .github/workflows/publish-plugin-and-cli-from-branch.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-plugin-and-cli-from-branch.yml b/.github/workflows/publish-plugin-and-cli-from-branch.yml index e0e1639960..0a49f103c8 100644 --- a/.github/workflows/publish-plugin-and-cli-from-branch.yml +++ b/.github/workflows/publish-plugin-and-cli-from-branch.yml @@ -54,6 +54,7 @@ jobs: cd utbot-intellij/build/distributions unzip utbot-intellij-${{ env.VERSION }}.zip rm utbot-intellij-${{ env.VERSION }}.zip + - name: Archive UTBot IntelliJ IDEA plugin uses: actions/upload-artifact@v3 with: @@ -63,7 +64,7 @@ jobs: - name: Build UTBot CLI run: | cd utbot-cli - gradle clean build -x test --no-daemon -PsemVer=${{ env.VERSION }} + gradle clean build --no-daemon -PsemVer=${{ env.VERSION }} - name: Archive UTBot CLI uses: actions/upload-artifact@v3