mirror of
https://github.com/nigels-com/glew.git
synced 2025-07-07 14:00:20 +00:00
actions: linux-mingw build coverage added
This commit is contained in:
parent
778eea0a7e
commit
d4e5b01d9c
23
.gitea/workflows/linux-mingw.yaml
Normal file
23
.gitea/workflows/linux-mingw.yaml
Normal file
@ -0,0 +1,23 @@
|
||||
name: Ubuntu Linux gcc cross-build
|
||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install Dependencies
|
||||
run: |
|
||||
apt update
|
||||
apt install -y mingw-w64 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-mingw32 make
|
||||
make clean && SYSTEM=linux-mingw64 make
|
Loading…
Reference in New Issue
Block a user