Update whats_new.md #364
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: Terrier Maven CI | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: [11, 13] | |
os: ['ubuntu-latest', 'macOs-latest', 'windows-latest'] | |
architecture: ['x64'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
architecture: ${{ matrix.architecture }} | |
distribution: 'zulu' | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml | |
- name: Run on Windows | |
if: matrix.os == 'windows-latest' | |
run: | | |
bin\terrier.bat | |
- name: Run on Linux/MacOs | |
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macOs-latest' | |
run: | | |
bin/terrier |