ci: Add dependencies installation to the GitHub Actions workflow
This commit is contained in:
parent
9c93172988
commit
9914895d68
1 changed files with 3 additions and 0 deletions
3
.github/workflows/cmake.yml
vendored
3
.github/workflows/cmake.yml
vendored
|
@ -17,6 +17,9 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Install Dependencies
|
||||
run: sudo apt install libboost-all-dev libsdl2-dev libglew-dev libopenal-dev libmad0-dev libavcodec-dev libavformat-dev libavutil-dev libswresample-dev libswscale-dev
|
||||
|
||||
- name: Create Build Environment
|
||||
# Some projects don't allow in-source building, so create a separate build directory
|
||||
# We'll use this as our working directory for all subsequent commands
|
||||
|
|
Loading…
Reference in a new issue