blob: ac01b58c7224d0c83f193f221dc8fe6cc3a176b2 [file] [log] [blame]
name: C/C++ CI
on:
# allow manual runs
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: checkout datasketches-cpp
uses: actions/checkout@v3
with:
repository: apache/datasketches-cpp
path: datasketches-cpp
- name: download Boost
run: make boost
- name: install PostgreSQL
run: sudo apt-get -y install postgresql-14 postgresql-client-14 postgresql-server-dev-14 libpq-dev
- name: make
run: make
- name: install
run: make install
- name: start server
run: |
sudo systemctl start postgresql.service
pg_isready
- name: create test database
run sudo createdb test
- name: run tests
run: make tests