Skip to content

Merge pull request #67 from helmadik/patch-3 #20

Merge pull request #67 from helmadik/patch-3

Merge pull request #67 from helmadik/patch-3 #20

Workflow file for this run

name: Build Morpheus Stemlibs
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update packages
run: sudo apt-get update -qq
- name: Install dependencies
run: sudo apt-get install -qq -y build-essential flex-old
- name: Make
run: bash -c "cd src/ && CFLAGS='-std=gnu89 -fcommon' make && make install"
- name: Make the stemlib
run: bash -c "./build_stemlib.sh"
- name: commit
uses: EndBug/add-and-commit@v4
with:
message: "auto build linux and stemlib"
add: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}