Commit 408badef authored by Nikias Bassen's avatar Nikias Bassen

[github actions] Update build workflow

parent a511a4bd
......@@ -10,6 +10,21 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v1
- name: install dependencies
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get install cython
elif [ "$RUNNER_OS" == "macOS" ]; then
if test -x "`which port`"; then
sudo port install libtool autoconf automake cython
else
sudo brew install libtool autoconf automake cython
fi
else
echo "$RUNNER_OS not supported"
exit 1
fi
shell: bash
- name: autogen
run: ./autogen.sh
- name: make
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment