Skip to content

Commit

Permalink
build.yaml: Debugging paths
Browse files Browse the repository at this point in the history
  • Loading branch information
hjpotter92 committed Jan 18, 2024
1 parent 18b8f0d commit 5096e4c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit 5096e4c

Please sign in to comment.