Skip to content

Commit e185613

Browse files
committed
Fix run label and paths to build glfw in
1 parent afd66ee commit e185613

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,16 @@ jobs:
2626
sudo apt upgrade
2727
if: matrix.os == 'ubuntu-latest'
2828

29-
- name: Install Build
29+
- name: Build and install GLFW
3030
run: |
3131
sudo apt install xorg-dev cmake
32-
cd /tmp
3332
git clone --recursive https://github.com/glfw/glfw.git
3433
cd glfw
3534
mkdir build
3635
cmake -S . -B ./build -D GLFW_BUILD_EXAMPLES=OFF -D GLFW_BUILD_TESTS=OFF -D GLFW_BUILD_DOCS=OFF -D BUILD_SHARED_LIBS=ON
3736
cd build
3837
make
39-
make install
38+
sudo make install
4039
if: matrix.os == 'ubuntu-latest'
4140

4241
- name: Setup .NET

0 commit comments

Comments
 (0)