testing actions
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
name: Build & Release
|
||||
|
||||
on: [push, workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install build tools
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install -y build-essential cmake zip unzip make
|
||||
|
||||
- name: Build makeheaders
|
||||
run: |
|
||||
cd makeheaders
|
||||
make
|
||||
cd ..
|
||||
|
||||
- name: Make compile script executable
|
||||
run: chmod +x ./compile.sh
|
||||
|
||||
- name: Compile
|
||||
run: |
|
||||
./compile.sh
|
||||
zip -r release-linux.zip OUTPUT-Linux || true
|
||||
zip -r release-w64.zip OUTPUT-w64 || true
|
||||
@@ -1,7 +1,6 @@
|
||||
OUTPUT/*
|
||||
OLD STUFF
|
||||
build
|
||||
makeheaders
|
||||
libraries/*
|
||||
.vscode
|
||||
android
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
CC = gcc
|
||||
CFLAGS = -Wall
|
||||
|
||||
all: makeheaders
|
||||
|
||||
makeheaders:
|
||||
$(CC) $(CFLAGS) makeheaders.c -o makeheaders
|
||||
|
||||
clean:
|
||||
rm -rf makeheaders
|
||||
|
||||
Executable
BIN
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user