Summary
Jobs
test-build (1.31.0, 11, ubuntu-20.04)
test-build (1.31.0, 11, ubuntu-22.04)
test-build (1.31.0, 11, macos-11)
test-build (1.31.0, 11, macos-12)
test-build (1.31.0, 11, windows-2019)
test-build (1.31.0, 11, windows-2022)
test-build (1.31.0, 17, ubuntu-20.04)
test-build (1.31.0, 17, ubuntu-22.04)
test-build (1.31.0, 17, macos-11)
test-build (1.31.0, 17, macos-12)
test-build (1.31.0, 17, windows-2019)
test-build (1.31.0, 17, windows-2022)
test-build (1.31.1, 11, ubuntu-20.04)
test-build (1.31.1, 11, ubuntu-22.04)
test-build (1.31.1, 11, macos-11)
test-build (1.31.1, 11, macos-12)
test-build (1.31.1, 11, windows-2019)
test-build (1.31.1, 11, windows-2022)
test-build (1.31.1, 17, ubuntu-20.04)
test-build (1.31.1, 17, ubuntu-22.04)
test-build (1.31.1, 17, macos-11)
test-build (1.31.1, 17, macos-12)
test-build (1.31.1, 17, windows-2019)
test-build (1.31.1, 17, windows-2022)
test-build (1.32.0-SNAPSHOT, 11, ubuntu-20.04)
test-build (1.32.0-SNAPSHOT, 11, ubuntu-22.04)
test-build (1.32.0-SNAPSHOT, 11, macos-11)
test-build (1.32.0-SNAPSHOT, 11, macos-12)
test-build (1.32.0-SNAPSHOT, 11, windows-2019)
test-build (1.32.0-SNAPSHOT, 11, windows-2022)
test-build (1.32.0-SNAPSHOT, 17, ubuntu-20.04)
test-build (1.32.0-SNAPSHOT, 17, ubuntu-22.04)
test-build (1.32.0-SNAPSHOT, 17, macos-11)
test-build (1.32.0-SNAPSHOT, 17, macos-12)
test-build (1.32.0-SNAPSHOT, 17, windows-2019)
test-build (1.32.0-SNAPSHOT, 17, windows-2022)
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 maven download
on:
push: { }
pull_request: { }
workflow_dispatch: { }
schedule:
- cron: '37 4 * * *'
jobs:
test-build:
strategy:
fail-fast: false
matrix:
quantlib-version:
- 1.31.0
- 1.31.1
- 1.32.0-SNAPSHOT
java-version:
- 11
- 17
os:
- ubuntu-20.04
- ubuntu-22.04
- macos-11
- macos-12
- windows-2019
- windows-2022
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java-version }}
distribution: "temurin"
cache: maven
- name: Build on ${{ matrix.os }} and jdk ${{ matrix.java-version }}
id: build
shell: bash
run: |
./mvnw --batch-mode --version
./mvnw --batch-mode versions:set-property -Dproperty=quantlib.version -DnewVersion=${{ matrix.quantlib-version }}
./mvnw --batch-mode --update-snapshots clean test
You can’t perform that action at this time.