Skip to content

Commit

Permalink
Merge pull request #552 from mrglavas/removeLSP4IJ2
Browse files Browse the repository at this point in the history
Updates to integrate the build of LSP4iJ into the GitHub action.
  • Loading branch information
mrglavas authored Oct 27, 2023
2 parents 954e22c + 95d3f7f commit 51f4d3d
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ jobs:
minimum-size: 8GB
maximum-size: 10GB
disk-root: "C:"
- name: 'Checkout lsp4ij'
uses: actions/checkout@v3
with:
repository: MicroShed/lsp4ij
path: lsp4ij
- name: 'Checkout liberty-tools-intellij'
uses: actions/checkout@v3
with:
Expand All @@ -40,16 +45,9 @@ jobs:
- name: 'Install required integration test software'
working-directory: ./liberty-tools-intellij
run: bash ./src/test/resources/ci/scripts/setup.sh
- name: 'Run UI integration tests'
working-directory: ./liberty-tools-intellij
run: bash ./src/test/resources/ci/scripts/run.sh
- name: 'Archive Test logs and reports'
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.reportName }}
path: |
liberty-tools-intellij/build/reports/
- name: 'Build lsp4ij jar and publish to local Maven repository'
working-directory: ./lsp4ij
run: bash ./gradlew publishToMavenLocal
- name: 'Build Liberty-Tools-Intellij'
working-directory: ./liberty-tools-intellij
run: bash ./gradlew buildPlugin
Expand All @@ -63,3 +61,13 @@ jobs:
./**/libs/*liberty-tools-intellij*.jar
if-no-files-found: warn
retention-days: 7
- name: 'Run UI integration tests'
working-directory: ./liberty-tools-intellij
run: bash ./src/test/resources/ci/scripts/run.sh
- name: 'Archive Test logs and reports'
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.reportName }}
path: |
liberty-tools-intellij/build/reports/

0 comments on commit 51f4d3d

Please sign in to comment.