feat: Allow to consume the initialized solution #23
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
name: Test coverage | |
on: | |
# Enables the workflow to run on PRs from forks; | |
# token sharing is safe here, because enterprise is a private repo and therefore fully under our control. | |
pull_request_target: | |
branches: [main, '*.x'] | |
types: | |
- opened | |
- reopened | |
- synchronize | |
paths-ignore: | |
- 'LICENSE*' | |
- '.gitignore' | |
- '**.md' | |
- '**.adoc' | |
- '*.txt' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: pr-${{ github.event_name }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
timeout-minutes: 120 | |
steps: | |
# Need to check for stale repo, since Github is not aware of the build chain and therefore doesn't automate it. | |
- name: Checkout timefold-solver (PR) # Checkout the PR branch first, if it exists | |
if: github.head_ref # Only true if this is a PR. | |
id: checkout-solver | |
uses: actions/checkout@v4 | |
continue-on-error: true | |
with: | |
repository: ${{ github.actor }}/timefold-solver | |
ref: ${{ github.head_ref }} | |
path: ./timefold-solver | |
fetch-depth: 0 # Otherwise merge will fail on account of not having history. | |
- name: Checkout timefold-solver (main) # Checkout the main branch if the PR branch does not exist | |
if: ${{ steps.checkout-solver.outcome != 'success' }} | |
uses: actions/checkout@v4 | |
with: | |
repository: TimefoldAI/timefold-solver | |
ref: main | |
path: ./timefold-solver | |
fetch-depth: 0 # Otherwise merge will fail on account of not having history. | |
- name: Prevent stale fork of timefold-solver # Solver can't be stale if main branch of blessed repo requested. | |
if: ${{ steps.checkout-solver.outcome == 'success' }} | |
env: | |
BLESSED_REPO: "timefold-solver" | |
BLESSED_BRANCH: ${{ endsWith(github.head_ref, '.x') && github.head_ref || 'main' }} | |
shell: bash | |
working-directory: ./timefold-solver | |
run: .github/scripts/prevent_stale_fork.sh | |
- name: Setup Temurin 21 and Maven | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Quickly build timefold-solver | |
working-directory: ./timefold-solver | |
shell: bash | |
run: mvn -B -Dquickly clean install | |
# Clone timefold-solver-enterprise | |
# Need to check for stale repo, since Github is not aware of the build chain and therefore doesn't automate it. | |
- name: Checkout timefold-solver-enterprise (PR) # Checkout the PR branch first, if it exists | |
if: github.head_ref # Only true if this is a PR. | |
id: checkout-solver-enterprise | |
uses: actions/checkout@v4 | |
continue-on-error: true | |
with: | |
repository: TimefoldAI/timefold-solver-enterprise | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.JRELEASER_GITHUB_TOKEN }} # Safe; only used to clone the repo and not stored in the fork. | |
path: ./timefold-solver-enterprise | |
fetch-depth: 0 # Otherwise merge will fail on account of not having history. | |
- name: Checkout timefold-solver-enterprise (main) # Checkout the main branch if the PR branch does not exist | |
if: steps.checkout-solver-enterprise.outcome != 'success' | |
uses: actions/checkout@v4 | |
with: | |
repository: TimefoldAI/timefold-solver-enterprise | |
ref: main | |
token: ${{ secrets.JRELEASER_GITHUB_TOKEN }} # Safe; only used to clone the repo and not stored in the fork. | |
path: ./timefold-solver-enterprise | |
fetch-depth: 0 # Otherwise merge will fail on account of not having history. | |
- name: Prevent stale fork of timefold-solver-enterprise | |
if: steps.checkout-solver-enterprise.outcome == 'success' | |
env: | |
BLESSED_REPO: "timefold-solver-enterprise" | |
BLESSED_BRANCH: ${{ endsWith(github.head_ref, '.x') && github.head_ref || 'main' }} | |
shell: bash | |
working-directory: ./timefold-solver-enterprise | |
run: ../timefold-solver/.github/scripts/prevent_stale_fork.sh | |
- name: Quickly build timefold-solver-enterprise | |
working-directory: ./timefold-solver-enterprise | |
shell: bash | |
run: mvn -B -Dquickly clean install | |
# Clone timefold-solver-benchmarks | |
- name: Checkout timefold-solver-benchmarks | |
uses: actions/checkout@v4 | |
with: | |
path: ./timefold-solver-benchmarks | |
- name: Build and test timefold-solver-benchmarks | |
working-directory: ./timefold-solver-benchmarks | |
shell: bash | |
run: mvn -B -DskipJMH clean verify |