Merge branch 'main' of https://dock-it.dev/Bit-By-Byte/Tesseract-Engine
Some checks failed
Build And Release / build_release (push) Failing after 1m44s

This commit is contained in:
OusmBlueNinja 2025-01-03 20:45:38 -06:00
commit 611bc36ad6

View File

@ -0,0 +1,40 @@
name: Build And Release
on:
push:
branches:
- main
jobs:
build_release:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential g++ make cmake \
libglew-dev libglfw3-dev \
libglm-dev libyaml-cpp-dev \
mesa-common-dev libglu-dev \
liblua5.4-dev
- name: Build and create release artifacts
run: |
make clean
make
- name: Upload release artifacts
# The syntax below is taken from GitHub's "upload-artifact" action.
# In Gitea, you may need to adapt or configure an equivalent step
# if the built-in "upload-artifact" isn't supported yet.
uses: actions/upload-artifact@v2
with:
name: TesseractEngine
path: release