From cc776abd3b97b7ee608a287c9b33a7030f3ec6a7 Mon Sep 17 00:00:00 2001 From: Milan Nikolic Date: Mon, 26 Feb 2024 09:35:31 +0100 Subject: [PATCH] Update actions --- .github/workflows/build.yml | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e2f4f6a..ce2ff0f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@v3 - name: Install package run: | - sudo apt-get update -y; sudo apt-get -y install libxi-dev libxinerama-dev libxcursor-dev libxrandr-dev libgl1-mesa-dev + sudo apt-get update -y; sudo apt-get -y install libxi-dev libxinerama-dev libxcursor-dev libxrandr-dev libgl1-mesa-dev libwayland-dev libxkbcommon-dev if: runner.os == 'Linux' - name: Build run: go build ./... @@ -80,26 +80,6 @@ jobs: run: go build -tags sdl working-directory: raylib - test-wayland: - strategy: - matrix: - go-version: [1.21.x] - os: [ubuntu-latest] - runs-on: ${{ matrix.os }} - steps: - - name: Install Go - uses: actions/setup-go@v3 - with: - go-version: ${{ matrix.go-version }} - - name: Checkout code - uses: actions/checkout@v3 - - name: Install package - run: | - sudo apt-get update -y; sudo apt-get -y install libgl1-mesa-dev libwayland-dev libxkbcommon-dev - - name: Build - run: go build -tags wayland - working-directory: raylib - test-examples: strategy: matrix: