Skip to content

Commit

Permalink
added build workflow with upload on release
Browse files Browse the repository at this point in the history
  • Loading branch information
Vipul-Cariappa committed Jan 3, 2024
1 parent 3284f6e commit 8975378
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Build

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install -y gcc-mingw-w64 cmake make gcc bison flex
- name: Build for Linux
run: |
cmake -DCMAKE_BUILD_TYPE=Release .
make
mv ./KariLang ./KariLang-Linux-x86-64
- name: Build for Windows
run: |
x86_64-w64-mingw32-gcc -O3 \
./src/main.c \
./src/semantics.c \
./src/interpreter.c \
./src/lex.yy.c \
./src/parser.tab.c \
-o ./KariLang-Windows-x86-64.exe
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
KariLang-Windows-x86-64.exe
KariLang-Linux-x86-64

0 comments on commit 8975378

Please sign in to comment.