Merge pull request #239 from DALnet/issue-238 #246
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: C/C++ CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install dependencies | |
run: sudo apt-get install autoconf automake libtool check libssl-dev shtool | |
- name: libtoolize | |
run: libtoolize --force | |
- name: aclocal | |
run: aclocal | |
- name: autoheader | |
run: autoheader | |
- name: automake | |
run: automake --force-missing --add-missing || exit 0 | |
- name: autoreconf | |
run: autoreconf -vfi | |
- name: configure | |
run: ./configure | |
- name: make | |
run: make |