Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 54 additions & 6 deletions .github/workflows/build-baremetal-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,21 +74,27 @@ jobs:
sudo apt-get update --fix-missing && \
sudo apt-get install --no-install-recommends -y intel-oneapi-ipp-devel-2022.0

- name: 'Download and patch ffmpeg repository'
- name: 'preparation: download and patch ffmpeg repository'
run: |
set -eo pipefail && \
curl -Lf https://github.com/ffmpeg/ffmpeg/archive/${FFMPEG_COMMIT_ID}.tar.gz | tar -zx --strip-components=1 -C "${BUILD_FFMPEG_DIR}"
patch -d "${BUILD_FFMPEG_DIR}" -p1 -i <(cat "${{ github.workspace }}/ffmpeg/"*.patch)
cp "${{ github.workspace }}/ffmpeg/vf_raisr"*.c "${BUILD_FFMPEG_DIR}/libavfilter"

- name: 'Build RAISR from source code'
- name: 'build: building RAISR from source code'
run: |
./build.sh -DENABLE_RAISR_OPENCL=ON \
-DCMAKE_LIBRARY_PATH="/opt/intel/oneapi/ipp/latest/lib;${PREFIX}/lib;" \
-DCMAKE_C_FLAGS="-I/opt/intel/oneapi/ipp/latest/include -I/opt/intel/oneapi/ipp/latest/include/ipp" \
-DCMAKE_CXX_FLAGS="-I/opt/intel/oneapi/ipp/latest/include -I/opt/intel/oneapi/ipp/latest/include/ipp"

- name: 'Configure ffmpeg repository'
- name: 'post-build: upload build artifacts'
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: raisr-library-binary
path: '${{ github.workspace }}/build/Library'

- name: 'preparation: configure ffmpeg repository'
continue-on-error: true
run: |
cd "${BUILD_FFMPEG_DIR}"
Expand All @@ -109,12 +115,54 @@ jobs:
--prefix="${PREFIX}" || \
{ tail -n 100 "${BUILD_DIR}/ffmpeg/ffbuild/config.log" && exit 1; }

- name: 'Build, install and check ffmpeg'
- name: 'build: compilation and install of ffmpeg'
continue-on-error: true
working-directory: "${BUILD_FFMPEG_DIR}"
run: |
cd "${BUILD_FFMPEG_DIR}"
make clean
make -j"$(nproc)"
sudo -E make install

- name: 'checks: check if ffmpeg was build properly'
continue-on-error: true
working-directory: "${BUILD_FFMPEG_DIR}"
run: |
sudo -E ldconfig
ffmpeg -buildconf
./ffmpeg -buildconf || \
ffmpeg -buildconf || \
/usr/local/bin/ffmpeg -buildconf

build-baremetal-using-scripts:
runs-on: 'ubuntu-22.04'
timeout-minutes: 70
steps:
- name: 'preparations: Harden Runner'
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
with:
egress-policy: audit

- name: 'preparations: Checkout repository'
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: 'prerequisites: Download/Pull resources'
shell: bash
working-directory: scripts
run: |
git config --global user.email "[email protected]"
git config --global user.name "Ubuntu Action Runnner"

- name: 'prerequisites: Download/Pull resources'
shell: bash
working-directory: scripts
run: ./01_pull_resources.sh

- name: 'prerequisites: Install prerequisites'
shell: bash
working-directory: scripts
run: ./02_install_prerequisites.sh ./raisr.tar.gz

- name: 'Build raisr and ffmpeg'
shell: bash
working-directory: scripts
run: ./03_build_raisr_ffmpeg.sh ./raisr/Video-Super-Resolution-Library

2 changes: 1 addition & 1 deletion scripts/03_build_raisr_ffmpeg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ popd

# TO-DO: Remove patch apply from bellow lines:
# Apply a temporary patch - this will be removed after version of FFmpeg gets updated
patch -p1 -i "${REPOSITORY_DIR}/scripts/patch/ffmpeg/0001-avcodec-x86-mathops-clip-constants.patch"
patch -d "${raisr_path}/../ffmpeg" -p1 -i <(cat "${raisr_path}/scripts/patch/ffmpeg/"*.patch)

# build ffmpeg
pushd "${raisr_path}/../ffmpeg"
Expand Down
Loading