-
Notifications
You must be signed in to change notification settings - Fork 11
93 lines (73 loc) · 3.45 KB
/
cmake.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
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
name: CMake
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15.x]
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install curl lib
run: |
sudo apt-get update
sudo apt-get install libcurl4-openssl-dev
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -B ${{github.workspace}}/ingest-tools/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/ingest-tools/build --config ${{env.BUILD_TYPE}}
- name: Show build folder
working-directory: ${{github.workspace}}/ingest-tools/build/ingest-tools/
# Build your program with the given configuration
run: ls -all
- name: Run Unit Test
working-directory: ${{github.workspace}}/ingest-tools/build/ingest-tools/
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ./unittests
- name: Copy test file tos-096-750k.cmfv
working-directory: ${{github.workspace}}/ingest-tools/
run: |
cp test_files/tos-096-750k.cmfv build/ingest-tools/test.cmfv
cp ingest_receiver_node.js build/ingest-tools/ingest_receiver_node.js
- name: run fmp4dump
working-directory: ${{github.workspace}}/ingest-tools/build/ingest-tools/
run: ./fmp4dump test.cmfv
- name: run fmp4Init to create init segment
working-directory: ${{github.workspace}}/ingest-tools/build/ingest-tools/
run: ./fmp4_init test.cmfv out_init.cmfv
- name: run fmp4dump with init segment
working-directory: ${{github.workspace}}/ingest-tools/build/ingest-tools/
run: ./fmp4dump out_init.cmfv
- name: Test ingest with node.js server and with node.js server version ${{ matrix.node-version }}
working-directory: ${{github.workspace}}/ingest-tools/build/ingest-tools/
run: |
node ingest_receiver_node.js &
./fmp4ingest -l 0 -u 127.0.0.1:8080 test.cmfv > log_out.txt
ls -all
cmp --silent test.cmfv out_js_test.cmfv && echo '### SUCCESS: Files Are Identical! ###' || echo '### WARNING: Files Are Different! ###'
./fmp4dump test.cmfv > in.txt
./fmp4dump out_js_test.cmfv > out.txt
#diff in.txt out.txt
- name: run fmp4ingest with no arguments
working-directory: ${{github.workspace}}/ingest-tools/build/ingest-tools/
run: ./fmp4ingest