mirror of
https://github.com/nigels-com/glew.git
synced 2025-07-07 14:00:20 +00:00
Linux gcc and clang builds
This commit is contained in:
parent
bc44cb082d
commit
5e1a2ffa32
@ -1,4 +1,4 @@
|
|||||||
name: Ubuntu Linux Build
|
name: Ubuntu Linux clang Build
|
||||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
@ -9,7 +9,7 @@ jobs:
|
|||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
uses: ConorMacBride/install-package@v1
|
uses: ConorMacBride/install-package@v1
|
||||||
with:
|
with:
|
||||||
apt: libxmu-dev libxi-dev libgl-dev libegl1-mesa-dev libosmesa-dev dos2unix
|
apt: clang libxmu-dev libxi-dev libgl-dev libegl1-mesa-dev dos2unix
|
||||||
- name: Git Checkout
|
- name: Git Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Generate Code
|
- name: Generate Code
|
||||||
@ -19,9 +19,5 @@ jobs:
|
|||||||
make dist-src
|
make dist-src
|
||||||
- name: Build Binaries
|
- name: Build Binaries
|
||||||
run: |
|
run: |
|
||||||
make clean && SYSTEM=linux make
|
|
||||||
make clean && SYSTEM=linux-egl make
|
|
||||||
make clean && SYSTEM=linux-clang make
|
make clean && SYSTEM=linux-clang make
|
||||||
make clean && SYSTEM=linux-clang-egl make
|
make clean && SYSTEM=linux-clang-egl make
|
||||||
|
|
||||||
# make clean && SYSTEM=linux-osmesa make
|
|
23
.gitea/workflows/linux-gcc.yaml
Normal file
23
.gitea/workflows/linux-gcc.yaml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
name: Ubuntu Linux gcc Build
|
||||||
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Install Dependencies
|
||||||
|
uses: ConorMacBride/install-package@v1
|
||||||
|
with:
|
||||||
|
apt: libxmu-dev libxi-dev libgl-dev libegl1-mesa-dev dos2unix
|
||||||
|
- name: Git Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Generate Code
|
||||||
|
run: |
|
||||||
|
make -C auto clobber
|
||||||
|
make extensions
|
||||||
|
make dist-src
|
||||||
|
- name: Build Binaries
|
||||||
|
run: |
|
||||||
|
make clean && SYSTEM=linux make
|
||||||
|
make clean && SYSTEM=linux-egl make
|
Loading…
Reference in New Issue
Block a user