Skip to content

Commit

Permalink
Test Wayland build
Browse files Browse the repository at this point in the history
  • Loading branch information
gen2brain committed Nov 4, 2023
1 parent 211d960 commit 4ad2d27
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,26 @@ jobs:
run: go build -tags sdl
working-directory: raylib

test-wayland:
strategy:
matrix:
go-version: [1.19.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:
Expand Down

0 comments on commit 4ad2d27

Please sign in to comment.