forked from MediaArea/MediaInfo
-
Notifications
You must be signed in to change notification settings - Fork 1
59 lines (57 loc) · 1.59 KB
/
MediaInfo_Checks.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: Checks
on: [push, pull_request]
jobs:
Unix:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Dependencies
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update -y
sudo apt-get install -y zlib1g-dev libwxgtk3.0-gtk3-dev
fi
if [ "$RUNNER_OS" == "macOS" ]; then
brew install libtool automake wxmac
fi
- name: ZenLib
run: |
git -C .. clone --depth=1 https://github.com/MediaArea/ZenLib.git
pushd ../ZenLib/Project/GNU/Library
autoreconf -if
./configure --enable-static
make
popd
- name: MediaInfoLib
run: |
git -C .. clone --depth=1 https://github.com/MediaArea/MediaInfoLib.git
pushd ../MediaInfoLib/Project/GNU/Library
autoreconf -if
./configure --enable-static
make
popd
- name: Configure
run: |
cd Project/GNU/CLI
autoreconf -if
./configure --enable-staticlibs
- name: Build
run: |
cd Project/GNU/CLI
make
- name: Configure GUI
run: |
cd Project/GNU/GUI
autoreconf -if
./configure --enable-staticlibs
- name: Build GUI
run: |
cd Project/GNU/GUI
make