CI: added live555

This commit is contained in:
Martin Pulec
2020-02-06 11:27:07 +01:00
parent be79100e02
commit 31d8a655d2
6 changed files with 31 additions and 7 deletions

View File

@@ -37,3 +37,12 @@ if [ -n "$sdk_pass" ]; then
make
fi
# Install live555
git clone https://github.com/xanview/live555/
cd live555
git checkout 35c375
./genMakefiles linux-64bit
sudo make install CPLUSPLUS_COMPILER="c++ -DXLOCALE_NOT_USED"
cd ..

View File

@@ -38,6 +38,14 @@ if test -d /c/AJA; then
data/scripts/build_aja_lib_win64.sh
fi
# Install live555
git clone https://github.com/xanview/live555/
cd live555
git checkout 35c375
./genMakefiles mingw
make install
cd ..
# Install FFMPEG
wget --no-verbose https://ffmpeg.zeranoe.com/builds/win64/dev/ffmpeg-latest-win64-dev.zip && wget --no-verbose https://ffmpeg.zeranoe.com/builds/win64/shared/ffmpeg-latest-win64-shared.zip && unzip ffmpeg-latest-win64-dev.zip && unzip ffmpeg-latest-win64-shared.zip && cp -r ffmpeg-latest-win64-dev/include/* /usr/local/include && cp -r ffmpeg-latest-win64-dev/lib/* /usr/local/lib && cp -r ffmpeg-latest-win64-shared/bin/* /usr/local/bin && rm -rf ffmpeg-latest-*

View File

@@ -36,3 +36,10 @@ if [ -n "$sdk_pass" ]; then
sudo ln -fs /usr/local/lib/libajantv2.dylib /usr/local/lib/ajantv2.dylib
fi
# Install live555
git clone https://github.com/xanview/live555/
cd live555
git checkout 35c375
./genMakefiles macosx
make install
cd ..

View File

@@ -45,7 +45,7 @@ jobs:
if: steps.cache-qt-linux.outputs.cache-hit != 'true'
run: .github/scripts/Linux/build-qt.sh
- name: configure
run: ./autogen.sh --enable-qt --enable-static-qt --with-cuda-host-compiler=gcc-6 --enable-plugins
run: ./autogen.sh --enable-qt --enable-static-qt --with-cuda-host-compiler=gcc-6 --enable-plugins --with-live555=/usr/local
- name: make
run: make
- name: make check
@@ -83,7 +83,7 @@ jobs:
if: steps.cache-qt-mac.outputs.cache-hit != 'true'
run: .github/scripts/macOS/build-qt.sh
- name: configure
run: ./autogen.sh --enable-qt --enable-static-qt
run: ./autogen.sh --enable-qt --enable-static-qt --with-live555=/usr/local
- name: make
run: make osx-gui-dmg
- name: make check
@@ -114,7 +114,7 @@ jobs:
- name: bootsrap MSYS2
run: C:\msys64\usr\bin\bash -lc '$GITHUB_WORKSPACE/.github/scripts/Windows/prepare_msys.sh'
- name: configure
run: C:\msys64\usr\bin\bash -lc "./autogen.sh --enable-qt --disable-ndi"
run: C:\msys64\usr\bin\bash -lc "./autogen.sh --enable-qt --disable-ndi --with-live555=/usr/local"
- name: make
run: C:\msys64\usr\bin\bash -lc "make"
- name: make check

View File

@@ -27,7 +27,7 @@ jobs:
run: |
sudo apt install qtbase5-dev
- name: configure
run: ./autogen.sh --enable-qt --with-cuda-host-compiler=gcc-6 --enable-plugins
run: ./autogen.sh --enable-qt --with-cuda-host-compiler=gcc-6 --enable-plugins --with-live555=/usr/local
- name: Build with cov-build
run: |
/tmp/cov-analysis*/bin/cov-build --dir cov-int make -j 2

View File

@@ -73,7 +73,7 @@ jobs:
if: steps.cache-qt-linux.outputs.cache-hit != 'true'
run: .github/scripts/Linux/build-qt.sh
- name: configure
run: ./autogen.sh --enable-qt --enable-static-qt --with-cuda-host-compiler=gcc-6 --enable-plugins
run: ./autogen.sh --enable-qt --enable-static-qt --with-cuda-host-compiler=gcc-6 --enable-plugins --with-live555=/usr/local
- name: make
run: make
- name: make check
@@ -114,7 +114,7 @@ jobs:
if: steps.cache-qt-mac.outputs.cache-hit != 'true'
run: .github/scripts/macOS/build-qt.sh
- name: configure
run: ./autogen.sh --enable-qt --enable-static-qt
run: ./autogen.sh --enable-qt --enable-static-qt --with-live555=/usr/local
- name: make
run: make osx-gui-dmg
- name: make check
@@ -148,7 +148,7 @@ jobs:
- name: bootsrap MSYS2
run: C:\msys64\usr\bin\bash -lc '$GITHUB_WORKSPACE/.github/scripts/Windows/prepare_msys.sh'
- name: configure
run: C:\msys64\usr\bin\bash -lc "./autogen.sh --enable-qt --disable-ndi"
run: C:\msys64\usr\bin\bash -lc "./autogen.sh --enable-qt --disable-ndi --with-live555=/usr/local"
- name: make
run: C:\msys64\usr\bin\bash -lc "make"
- name: make check