From 5abe46d3693ce40d303d26024d82dec6f0f69fa8 Mon Sep 17 00:00:00 2001 From: Gregg Tavares Date: Thu, 16 May 2024 17:47:00 +0900 Subject: [PATCH] libxi-dev and more windows --- .github/workflows/build.yml | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3eee3c6..ae39484 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,21 +45,28 @@ jobs: run: | echo github.event.action: ${{ github.event.action }} echo github.event_name: ${{ github.event_name }} + - name: Install dependencies on windows if: startsWith(matrix.config.os, 'windows') - run: | - choco install node cmake - node --version - cmake --version - "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat" + steps: + - name: Install stuff + run: | + choco install node cmake + node --version + cmake --version + "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat" + + - name: Add msbuild to PATH + uses: microsoft/setup-msbuild@v2 - name: Install dependencies on ubuntu if: startsWith(matrix.config.name, 'Ubuntu_Latest_GCC') run: | sudo apt-get update - sudo apt-get install cmake libxi libxrandr-dev libxinerama-dev libxcursor-dev mesa-common-dev libx11-xcb-dev pkg-config + sudo apt-get install cmake libxi-dev libxrandr-dev libxinerama-dev libxcursor-dev mesa-common-dev libx11-xcb-dev pkg-config cmake --version gcc --version + - name: Install dependencies on macos if: startsWith(matrix.config.os, 'macos') run: |