From 7bc2e11022559321c49d124b98b08c9311fb5b0e Mon Sep 17 00:00:00 2001 From: tapxyh4ik <62992891+tapxyh4ik@users.noreply.github.com> Date: Fri, 27 Dec 2024 18:02:31 +0300 Subject: [PATCH] Update build-ad.yml --- .github/workflows/build-ad.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-ad.yml b/.github/workflows/build-ad.yml index da77d9f..4e311fe 100644 --- a/.github/workflows/build-ad.yml +++ b/.github/workflows/build-ad.yml @@ -17,12 +17,17 @@ jobs: # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. # You can convert this to a matrix build if you need cross-platform coverage. # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix - runs-on: ubuntu-latest + runs-on: windows-latest steps: + - name: Checkout - uses: actions/checkout@v4 - - uses: openrndr/setup-opengl@v1.1 - - run: xvfb-run glxinfo + + - name: Install OpenGL libraries + - run: | + choco install freeglut + choco install glew + choco install mesa - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.