From 38b00f0947bfd05ac39e594d94ea38950ea82cd2 Mon Sep 17 00:00:00 2001 From: Josh Allmann Date: Wed, 1 Apr 2026 15:19:46 -0700 Subject: [PATCH 1/2] disable xlib in ffmpeg build flags Made-with: Cursor --- install_ffmpeg.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install_ffmpeg.sh b/install_ffmpeg.sh index 520dc467ae..55108ab75c 100755 --- a/install_ffmpeg.sh +++ b/install_ffmpeg.sh @@ -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 From 0d101ee9fb7dfdf8e6b4f0bcd61c12feebc5a38d Mon Sep 17 00:00:00 2001 From: Josh Allmann Date: Wed, 1 Apr 2026 16:21:23 -0700 Subject: [PATCH 2/2] Temporarily disable GPU tests until we get a runner back --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 77ec2d2d2a..b657835c2b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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: @@ -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