Skip to content

Commit d83967b

Browse files
authored
Remove leftover GLEW dependency from GitHub Actions
1 parent a2e0b5d commit d83967b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
submodules: recursive
2424
- name: Install dependencies
25-
run: vcpkg install glew sdl2 libogg libvorbis --triplet=x86-windows-static
25+
run: vcpkg install sdl2 libogg libvorbis --triplet=x86-windows-static
2626
- name: Build RSDKv2
2727
run: |
2828
cmake -B build ${{env.GENERAL_FLAGS}} ${{env.GENERAL_WIN_FLAGS}} ${{env.WIN32_FLAGS}}
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
submodules: recursive
4646
- name: Install dependencies
47-
run: vcpkg install glew sdl2 libogg libvorbis --triplet=x64-windows-static
47+
run: vcpkg install sdl2 libogg libvorbis --triplet=x64-windows-static
4848
- name: Build RSDKv2
4949
run: |
5050
cmake -B build ${{env.GENERAL_FLAGS}} ${{env.GENERAL_WIN_FLAGS}} ${{env.WIN64_FLAGS}}
@@ -68,7 +68,7 @@ jobs:
6868
- name: Install dependencies
6969
run: |
7070
sudo apt-get update
71-
sudo apt-get install libglew-dev libglfw3-dev libsdl2-dev libogg-dev libvorbis-dev
71+
sudo apt-get install libsdl2-dev libogg-dev libvorbis-dev
7272
- name: Build RSDKv2
7373
run: |
7474
cmake -B build ${{env.GENERAL_FLAGS}} ${{env.GENERAL_LINUX_FLAGS}}

0 commit comments

Comments
 (0)