HSEARCH-4947 Make sure that nested jars can be read on Windows #15
Workflow file for this run
This file contains 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
# The main CI of Hibernate Search is https://ci.hibernate.org/job/hibernate-search/. | |
# However, Hibernate Search builds run on GitHub actions regularly | |
# to build on Windows | |
# and check that both the Linux and Windows workflows still work | |
# and can be used in GitHub forks. | |
# See https://docs.github.com/en/actions | |
# for more information about GitHub actions. | |
name: Hibernate Search GitHub Actions Build | |
on: | |
push: | |
branches: | |
- '!3.*' | |
- '!4.*' | |
- '!5.*' | |
- '!6.*' | |
- '!dependabot/**' | |
- '**' | |
tags: | |
- '**' | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: | |
- '!3.*' | |
- '!4.*' | |
- '!5.*' | |
- '!6.*' | |
# Ignore dependabot PRs that are not just about build dependencies; | |
# we'll reject such dependant PRs and send a PR ourselves. | |
- 'dependabot/maven/build-dependencies-**' | |
- '!dependabot/**' | |
- '**' | |
concurrency: | |
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}" | |
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'hibernate/hibernate-search' }} | |
env: | |
MAVEN_ARGS: "-e -B --settings .github/mvn-settings.xml --fail-at-end" | |
jobs: | |
build: | |
name: ${{matrix.os.name}} | |
runs-on: ${{ matrix.os.runs-on }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- { | |
name: "Linux JDK 17", | |
runs-on: 'ubuntu-latest', | |
java: { | |
version: 17 | |
} | |
} | |
- { | |
name: "Windows JDK 17", | |
runs-on: 'windows-latest', | |
java: { | |
version: 17 | |
} | |
} | |
steps: | |
- name: Support longpaths on Windows | |
if: "startsWith(matrix.os.runs-on, 'windows')" | |
run: git config --global core.longpaths true | |
- uses: actions/checkout@v4 | |
with: | |
# Fetch the whole history to make sure that gitflow incremental builder | |
# can find the base commit. | |
fetch-depth: 0 | |
- name: Set up Java ${{ matrix.os.java.version }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.os.java.version }} | |
# https://github.com/actions/cache/blob/main/examples.md#java---maven | |
- name: Cache local Maven repository | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Set up Maven | |
shell: bash | |
run: ./mvnw -v | |
- name: Docker cleanup | |
shell: bash | |
run: ./ci/docker-cleanup.sh | |
- name: Building code and running unit tests and basic checks | |
shell: bash | |
run: ./mvnw $MAVEN_ARGS install -Pjqassistant -Pdist -Pci-sources-check -DskipITs | |
- name: Running integration tests in the default environment | |
shell: bash | |
run: | | |
./mvnw $MAVEN_ARGS verify \ | |
-DskipSurefireTests -Pskip-checks -Pci-rebuild \ | |
${{ github.event.pull_request.base.ref && format('-Dincremental -Dgib.referenceBranch=refs/remotes/origin/{0}', github.event.pull_request.base.ref) || '' }} | |
- name: Docker cleanup | |
if: always() | |
shell: bash | |
run: ./ci/docker-cleanup.sh | |
- name: Omit produced artifacts from build cache | |
shell: bash | |
run: rm -r ~/.m2/repository/org/hibernate/search | |
- name: Upload build reports (if build failed) | |
uses: actions/upload-artifact@v3 | |
if: ${{ failure() || cancelled() }} | |
with: | |
name: ${{ format('build-reports-{0}', github.job) }} | |
path: | | |
./**/*-reports/ | |
retention-days: 2 |