mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 09:40:08 +00:00
CI: added live555
This commit is contained in:
9
.github/scripts/Linux/prepare.sh
vendored
9
.github/scripts/Linux/prepare.sh
vendored
@@ -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 ..
|
||||
|
||||
|
||||
8
.github/scripts/Windows/prepare_msys.sh
vendored
8
.github/scripts/Windows/prepare_msys.sh
vendored
@@ -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-*
|
||||
|
||||
|
||||
7
.github/scripts/macOS/prepare.sh
vendored
7
.github/scripts/macOS/prepare.sh
vendored
@@ -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 ..
|
||||
|
||||
6
.github/workflows/ccpp.yml
vendored
6
.github/workflows/ccpp.yml
vendored
@@ -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
|
||||
|
||||
2
.github/workflows/coverity-scan.yml
vendored
2
.github/workflows/coverity-scan.yml
vendored
@@ -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
|
||||
|
||||
6
.github/workflows/nightly.yml
vendored
6
.github/workflows/nightly.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user