-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (32 loc) · 995 Bytes
/
makefile-raylib.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Build CI for raylib extension
on:
push:
branches: [ "master" , "devel" ]
pull_request:
branches: [ "master" , "devel" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install raylib dev dependencies
run: sudo apt install libasound2-dev libx11-dev libxrandr-dev libxi-dev libgl1-mesa-dev libglu1-mesa-dev libxcursor-dev libxinerama-dev libwayland-dev libxkbcommon-dev
- name: Check out raylib
uses: actions/checkout@master
with:
repository: raysan5/raylib
- name: Prep raylib
run: |
cd src && make PLATFORM=PLATFORM_DESKTOP && sudo make install
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Run aclocal
run: aclocal
- name: Run autoconf
run: autoconf
- name: Run automake --add-missing
run: automake --add-missing
- name: Run ./configure --enable-raylib=yes
run: ./configure --enable-raylib=yes
- name: Run make
run: make