mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-22 19:22:50 -06:00
31 lines
516 B
YAML
31 lines
516 B
YAML
name: Build majestic runtime
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
|
|
ubuntu:
|
|
name: Build on Ubuntu
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install build tools
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y \
|
|
autoconf \
|
|
automake \
|
|
autotools-dev \
|
|
g++ \
|
|
libtool \
|
|
make
|
|
|
|
- name: Build package
|
|
working-directory: ./src/runtime/c
|
|
run: |
|
|
autoreconf -i
|
|
./configure
|
|
make
|