Skip to content

Update actions/checkout digest to 0ad4b8f #266

Update actions/checkout digest to 0ad4b8f

Update actions/checkout digest to 0ad4b8f #266

Workflow file for this run

---
name: mvn
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
mvn:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2022, macos-12]
java: [11, 17]
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-jdk-${{ matrix.java }}-maven-
- run: java -version
- run: mvn -version
- run: sudo apt-get install -y libnuma1 libaio1
if: matrix.os == 'ubuntu-20.04'
- run: mvn --errors --batch-mode clean install -Pqulice