mirror of
https://github.com/minetest/irrlicht.git
synced 2025-01-14 17:37:34 +01:00
38 lines
1000 B
YAML
38 lines
1000 B
YAML
name: build
|
|
|
|
# build on c/cpp changes or workflow changes
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
|
|
linux-gl:
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install deps
|
|
run: |
|
|
sudo apt-get install g++ gcc libxxf86vm-dev libgl1-mesa-dev libpng-dev libjpeg-dev zlib1g-dev -qyy
|
|
|
|
- name: Build
|
|
run: |
|
|
cd source/Irrlicht
|
|
make sharedlib
|
|
|
|
linux-gles:
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install deps
|
|
run: |
|
|
sudo apt-get install g++ gcc libxxf86vm-dev libgles2-mesa-dev libpng-dev libjpeg-dev zlib1g-dev -qyy
|
|
|
|
- name: Build
|
|
run: |
|
|
sed '/#define _IRR_COMPILE_WITH_OGLES2_/ s|^//||g' -i include/IrrCompileConfig.h
|
|
sed '/#define _IRR_COMPILE_WITH_OPENGL_/ s|^|//|g' -i include/IrrCompileConfig.h
|
|
cd source/Irrlicht
|
|
sed '/^sharedlib: LDFLAGS/ s|-lGL\b|-lGLESv2|' -i Makefile
|
|
make sharedlib
|