1
0
forked from GitHub/gf-core

Add CI workflow for building runtime

This commit is contained in:
John J. Camilleri
2021-08-12 10:33:45 +02:00
parent 4abe7836e0
commit cb30e176bd

30
.github/workflows/build-majestic.yml vendored Normal file
View File

@@ -0,0 +1,30 @@
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: |
apt-get update
apt-get install -y \
autoconf \
automake \
autotools-dev \
g++ \
libtool \
make
- name: Build package
working-directory: ./src/runtime/c
run: |
autoreconf -i
./configure
make