Skip to content
Snippets Groups Projects
Commit d0b2ed8f authored by Graham Pentheny's avatar Graham Pentheny
Browse files

Run apt-get update before trying to install libgli and libsdl2 on linux build machines

parent 04ea2a57
No related branches found
No related tags found
No related merge requests found
......@@ -89,7 +89,9 @@ jobs:
- uses: actions/checkout@v3
- name: Install opengl and SDL
run: sudo apt-get install -y libgl1-mesa-dev libsdl2-dev
run: |
sudo apt-get update
sudo apt-get install -y libgl1-mesa-dev libsdl2-dev
- name: Download & Install premake
working-directory: RecastDemo
......@@ -119,7 +121,9 @@ jobs:
- uses: actions/checkout@v3
- name: Install opengl and SDL
run: sudo apt-get install -y libgl1-mesa-dev libsdl2-dev
run: |
sudo apt-get update
sudo apt-get install -y libgl1-mesa-dev libsdl2-dev
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.conf}}
......
......@@ -47,7 +47,9 @@ jobs:
- uses: actions/checkout@v3
- name: Install opengl and SDL
run: sudo apt-get install -y libgl1-mesa-dev libsdl2-dev
run: |
sudo apt-get update
sudo apt-get install -y libgl1-mesa-dev libsdl2-dev
- name: Download & Install premake
working-directory: RecastDemo
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment