Skip to content

Commit 519b117

Browse files
committed
Fix CI
1 parent 3929b67 commit 519b117

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/cmake.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212

1313
jobs:
1414
build:
15-
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
15+
# The CMake configure and build commands are platform-agnostic and should work equally well on Windows or Mac.
1616
# You can convert this to a matrix build if you need cross-platform coverage.
1717
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
1818
runs-on: ubuntu-24.04
@@ -23,7 +23,9 @@ jobs:
2323
submodules: recursive
2424

2525
- name: Install GLFW dependency
26-
run: sudo apt-get install xorg-dev
26+
run: |
27+
sudo apt update
28+
sudo apt install xorg-dev
2729
2830
- name: Prepare Vulkan SDK
2931
uses: humbletim/setup-vulkan-sdk@v1.2.1
@@ -46,4 +48,3 @@ jobs:
4648
# Execute tests defined by the CMake configuration.
4749
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
4850
run: ctest -C ${{env.BUILD_TYPE}}
49-

0 commit comments

Comments
 (0)