Prepare for 0.19.0 release. #111
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: C/C++ CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: update apt cache | |
run: sudo apt-get update | |
- name: install dependencies | |
run: sudo apt-get install apache2-dev liblasso3-dev libcurl4-openssl-dev | |
- name: autoreconf | |
run: autoreconf -i -f | |
- name: autoconf | |
run: autoconf | |
- name: configure | |
run: ./configure | |
- name: make | |
run: make |