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
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
apt install -yqq build-essential make git zip unzip zlib1g-dev zlib1g yasm curl sudo

- name: Check out code
uses: actions/checkout@v4.1.1
uses: actions/checkout@v7.0.1
with:
fetch-depth: 0
# Check https://github.com/livepeer/go-livepeer/pull/1891
Expand All @@ -38,15 +38,15 @@ jobs:

- name: Set up go
id: go
uses: actions/setup-go@v5
uses: actions/setup-go@v7.0.0
with:
go-version: 1.20.4
cache: true
cache-dependency-path: go.sum

- name: Cache ffmpeg
id: cache-ffmpeg
uses: actions/cache@v4
uses: actions/cache@v6.1.0
with:
path: /home/runner/compiled
key: ${{ runner.os }}-ffmpeg-${{ hashFiles('./install_ffmpeg.sh') }}
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
run: PATH="/github/home/compiled/bin:$PATH" go test -timeout 1h -coverprofile cover.out ./...

- name: Upload coverage reports
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v7.0.0
with:
files: ./cover.out
name: ${{ github.event.repository.name }}
Expand All @@ -117,7 +117,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v4.1.1
uses: actions/checkout@v7.0.1
with:
fetch-depth: 0
# Check https://github.com/livepeer/go-livepeer/pull/1891
Expand Down
2 changes: 1 addition & 1 deletion install_ffmpeg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ if [[ "$GOOS" != "windows" && "$GOARCH" == "amd64" ]]; then
fi

if [[ ! -e "$ROOT/x264" ]]; then
git clone http://git.videolan.org/git/x264.git "$ROOT/x264"
git clone https://code.videolan.org/videolan/x264.git "$ROOT/x264"
cd "$ROOT/x264"
if [[ $GOARCH == "arm64" ]]; then
# newer git master, compiles on Apple Silicon
Expand Down