diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 386880d1e9..9cef23bd02 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -6,6 +6,10 @@ on: branches: - master +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + jobs: build: name: Test and build lpms project @@ -95,4 +99,9 @@ jobs: curl -L https://github.com/livepeer/livepeer-ml/releases/latest/download/tasmodel.pb --output ./ffmpeg/tasmodel.pb - name: Test - run: bash ./test.sh + run: | + which ffmpeg + echo "$PATH" + ls -lh /github/home/compiled/bin/ + /github/home/compiled/bin/ffmpeg -version || true + PATH="/github/home/compiled/bin:$PATH" bash ./test.sh