Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
build:
name: Test and build lpms project
runs-on: gpu-amd64
runs-on: ubuntu-24.04
container:
image: livepeerci/cuda:11.7.1-cudnn8-devel-ubuntu20.04
env:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:

- name: Test
shell: bash
run: PATH="/github/home/compiled/bin:$PATH" go test --tags=nvidia -timeout 1h -coverprofile cover.out ./...
run: PATH="/github/home/compiled/bin:$PATH" go test -timeout 1h -coverprofile cover.out ./...

- name: Upload coverage reports
uses: codecov/codecov-action@v4
Expand Down
1 change: 1 addition & 0 deletions install_ffmpeg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ else
# disable all unnecessary features for production build
DISABLE_FFMPEG_COMPONENTS+=" --disable-doc --disable-sdl2 --disable-iconv --disable-muxers --disable-demuxers --disable-parsers --disable-protocols "
DISABLE_FFMPEG_COMPONENTS+=" --disable-encoders --disable-decoders --disable-filters --disable-bsfs --disable-postproc --disable-lzma "
DISABLE_FFMPEG_COMPONENTS+=" --disable-xlib "
fi

if [[ ! -e "$ROOT/ffmpeg/libavcodec/libavcodec.a" ]]; then
Expand Down
Loading