Skip to content

Commit

Permalink
Try apt-get update before install packages (#244)
Browse files Browse the repository at this point in the history
Co-authored-by: Brendon Costa <[email protected]>
  • Loading branch information
bcostdolby and bcostdolby authored Jan 24, 2024
1 parent adb5afc commit 6ff52e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
run: git submodule update --init --recursive
- uses: actions/checkout@v3
- name: Install pre-requisite package
run: sudo apt-get install --fix-missing -y libavcodec-dev libx264-dev libavutil-dev libvpx-dev libswscale-dev libavformat-dev
run: |
sudo apt-get update
sudo apt-get install --fix-missing -y libavcodec-dev libx264-dev libavutil-dev libvpx-dev libswscale-dev libavformat-dev
- name: Configure
run: mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release ..
- name: Get number of CPU cores
Expand Down

0 comments on commit 6ff52e3

Please sign in to comment.