Update oos_oon.end #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} | |