-
-
Notifications
You must be signed in to change notification settings - Fork 72
45 lines (32 loc) · 989 Bytes
/
maven.yml
File metadata and controls
45 lines (32 loc) · 989 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
35
36
37
38
39
40
41
42
43
44
45
name: Test on Maven
on:
[push, pull_request]
jobs:
test-1-24-jdk25:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up JDK 25
uses: actions/setup-java@v5
with:
java-version: '25'
distribution: 'temurin'
- name: Install GStreamer
run: sudo apt-get update && sudo apt-get install gstreamer1.0-plugins-good gstreamer1.0-plugins-bad
- name: Build with Maven
run: ./mvnw --batch-mode verify
test-1-20-jdk8:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up JDK 8
uses: actions/setup-java@v5
with:
java-version: '8'
distribution: 'temurin'
- name: Install GStreamer
run: sudo apt-get update && sudo apt-get install gstreamer1.0-plugins-good gstreamer1.0-plugins-bad
- name: Build with Maven
run: ./mvnw --batch-mode verify