Skip to content

Update repology badge to drop EOL OSes; add CI badges #81

Update repology badge to drop EOL OSes; add CI badges

Update repology badge to drop EOL OSes; add CI badges #81

Workflow file for this run

name: Linux CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get install libcurl4-openssl-dev libhidapi-dev libzip-dev
- name: Build libconcord
run: |
cd libconcord
mkdir m4; autoreconf --install
./configure
make
sudo make install
sudo ldconfig
cd -
- name: Build libconcord Python bindings
run: |
cd libconcord/bindings/python
sudo python3 setup.py install
python3 -c 'import libconcord; print(libconcord)'
cd -
- name: Build concordance
run: |
cd concordance
mkdir m4; autoreconf --install
./configure
make
sudo make install
cd -
concordance --version