blob: b9fa38bf2a12b9bfea1a6aead31b1aeed112184a [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