Skip to content

Cannot find utbot-fuzzing.jar fix #795

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/publish-plugin-and-cli-from-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,11 @@ 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

- name: Archive UTBot IntelliJ IDEA plugin
uses: actions/upload-artifact@v3
with:
Expand All @@ -63,7 +64,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
Expand Down
3 changes: 0 additions & 3 deletions utbot-cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down