forked from yawkat/lz4-java
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (32 loc) · 748 Bytes
/
test.yml
File metadata and controls
34 lines (32 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Run tests
on:
push:
pull_request:
jobs:
linux:
name: Linux test
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Install Zulu JDK 7
uses: actions/setup-java@v5
with:
distribution: zulu
java-version: '7'
cache: maven
- name: Setup Temurin JDK 21
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: '21'
cache: maven
- name: Build (mvn verify on native linux/amd64)
run: |
./mvnw -B -V \
-Darch.id=amd64 \
-Dnative.cc=gcc \
verify