generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
59 lines (52 loc) · 1.44 KB
/
test.yml
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
name: "units-test"
on:
pull_request:
push:
branches:
- main
jobs:
# unit tests
units:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['windows-2019', 'windows-2022', 'macos-12', 'ubuntu-20.04']
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm test
# test action works running from the graph
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['windows-2019', 'windows-2022', 'macos-12', 'ubuntu-20.04']
arch: ['x86', 'x86_64']
buildSource: [true, false]
exclude:
- os: 'macos-12'
arch: 'x86'
- os: 'ubuntu-20.04'
arch: 'x86'
- os: 'macos-12'
buildSource: true
- os: 'ubuntu-20.04'
buildSource: false
steps:
- uses: actions/checkout@v4
- name: Install Python for Windows
if: matrix.os == 'windows-2019' || matrix.os == 'windows-2022'
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Meson and Ninja Dependencies for Windows
if: matrix.os == 'windows-2019' || matrix.os == 'windows-2022'
run: pip install setuptools meson ninja
- name: Setup GStreamer with default version
uses: ./
with:
arch: ${{ matrix.arch }}
forceBuildFromSource: ${{ matrix.buildSource }}
- name: Run gst-inspect --version
run: |
gst-inspect-1.0 --version