build: use quarkus-ls 0.22.0 from new repo #906
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: Integration tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Run integration tests | |
run: | | |
chmod +x gradlew | |
xvfb-run ./gradlew integrationTest --info --continue | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ runner.os }}-integration-test-reports | |
path: build/reports/tests/integrationTest | |
if: always() | |
- name: Archiving screenshots | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ runner.os }}-screenshots | |
path: build/screenshots/ | |
if-no-files-found: 'ignore' | |
if: always() | |
# disabled. see https://github.com/redhat-developer/intellij-quarkus/issues/1350 | |
# build-macos: | |
# runs-on: macos-latest | |
# | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: Set up JDK 17 | |
# uses: actions/setup-java@v4 | |
# with: | |
# distribution: temurin | |
# java-version: 17 | |
# - name: Run integration tests | |
# run: ./gradlew integrationTest | |
# - uses: actions/upload-artifact@v4 | |
# with: | |
# name: ${{ runner.os }}-integration-test-reports | |
# path: build/reports/tests/integrationTest | |
# if: always() | |
# - name: Archiving screenshots | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: ${{ runner.os }}-screenshots | |
# path: build/screenshots/ | |
# if-no-files-found: 'ignore' | |
# if: always() | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Run integration tests | |
run: .\gradlew.bat integrationTest | |
shell: powershell | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ runner.os }}-integration-test-reports | |
path: build\reports\tests\integrationTest | |
if: always() | |
- name: Archiving screenshots | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ runner.os }}-screenshots | |
path: build\screenshots\ | |
if-no-files-found: 'ignore' | |
if: always() |