We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afd66ee commit e185613Copy full SHA for e185613
.github/workflows/ci.yml
@@ -26,17 +26,16 @@ jobs:
26
sudo apt upgrade
27
if: matrix.os == 'ubuntu-latest'
28
29
- - name: Install Build
+ - name: Build and install GLFW
30
run: |
31
sudo apt install xorg-dev cmake
32
- cd /tmp
33
git clone --recursive https://github.com/glfw/glfw.git
34
cd glfw
35
mkdir build
36
cmake -S . -B ./build -D GLFW_BUILD_EXAMPLES=OFF -D GLFW_BUILD_TESTS=OFF -D GLFW_BUILD_DOCS=OFF -D BUILD_SHARED_LIBS=ON
37
cd build
38
make
39
- make install
+ sudo make install
40
41
42
- name: Setup .NET
0 commit comments