forked from UniversalMediaServer/UniversalMediaServer
-
Notifications
You must be signed in to change notification settings - Fork 0
124 lines (119 loc) · 4.31 KB
/
ci.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
name: CI
on: [push, pull_request]
jobs:
macos:
if: |
(github.event_name == 'push' && (github.actor == 'renovate[bot]' || github.ref_name == 'main')) ||
(github.event_name == 'pull_request')
name: macOS
runs-on: macos-13
strategy:
matrix:
# test against two different xcode version on MacOS
xcode: [ 9.4.1, latest ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'liberica'
java-version: 17
cache: 'maven'
- name: Cache Node dependencies
id: cache-node-dependencies
uses: actions/cache@v3
with:
path: |
react-client/.yarn
react-client/node
react-client/node_modules
key: node-dependencies-${{ hashFiles('yarn.lock') }}
- name: Run tests (XCode ${{ matrix.xcode }})
run: DEVELOPER_DIR=/Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer && mvn verify -P testing-macos
windows-latest:
if: |
(github.event_name == 'push' && (github.actor == 'renovate[bot]' || github.ref_name == 'main')) ||
(github.event_name == 'pull_request')
name: Windows and lint
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'liberica'
java-version: 17
cache: 'maven'
- name: Cache Node dependencies
id: cache-node-dependencies
uses: actions/cache@v3
with:
path: |
react-client/.yarn
react-client/node
react-client/node_modules
key: node-dependencies-${{ hashFiles('yarn.lock') }}
- name: Run linter and tests
run: mvn verify -P linter
linux-focal:
if: |
(github.event_name == 'push' && (github.actor == 'renovate[bot]' || github.ref_name == 'main')) ||
(github.event_name == 'pull_request')
name: Linux 20.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'liberica'
java-version: 17
cache: 'maven'
- name: Cache Node dependencies
id: cache-node-dependencies
uses: actions/cache@v3
with:
path: |
react-client/.yarn
react-client/node
react-client/node_modules
key: node-dependencies-${{ hashFiles('yarn.lock') }}
- name: Run tests
run: |
sudo apt-get -y install libmms0
wget --no-check-certificate https://mediaarea.net/download/binary/libzen0/0.4.41/libzen0v5_0.4.41-1_amd64.xUbuntu_20.04.deb
sudo dpkg -i libzen0v5_0.4.41-1_amd64.xUbuntu_20.04.deb
wget --no-check-certificate https://mediaarea.net/download/binary/libmediainfo0/23.06/libmediainfo0v5_23.06-1_amd64.xUbuntu_20.04.deb
sudo dpkg -i libmediainfo0v5_23.06-1_amd64.xUbuntu_20.04.deb
mvn verify -P testing -DdisableXmlReport=true
linux-jammy:
if: |
(github.event_name == 'push' && (github.actor == 'renovate[bot]' || github.ref_name == 'main')) ||
(github.event_name == 'pull_request')
name: Linux 22.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'liberica'
java-version: 17
cache: 'maven'
- name: Cache Node dependencies
id: cache-node-dependencies
uses: actions/cache@v3
with:
path: |
react-client/.yarn
react-client/node
react-client/node_modules
key: node-dependencies-${{ hashFiles('yarn.lock') }}
- name: Run tests
run: |
sudo apt-get -y install libmms0
wget --no-check-certificate https://mediaarea.net/download/binary/libzen0/0.4.41/libzen0v5_0.4.41-1_amd64.xUbuntu_22.04.deb
sudo dpkg -i libzen0v5_0.4.41-1_amd64.xUbuntu_22.04.deb
wget --no-check-certificate https://mediaarea.net/download/binary/libmediainfo0/23.06/libmediainfo0v5_23.06-1_amd64.xUbuntu_22.04.deb
sudo dpkg -i libmediainfo0v5_23.06-1_amd64.xUbuntu_22.04.deb
mvn verify -P testing -DdisableXmlReport=true