Removed TableLoader and Boost dependency, adjust paths #680
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] | |
jobs: | |
centos: | |
runs-on: ubuntu-latest | |
container: | |
image: centos/devtoolset-7-toolchain-centos7 | |
options: -u root | |
steps: | |
- name: Install dependencies | |
run: | | |
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm | |
yum install -y make boost-devel catch-devel readline-devel yaml-cpp-devel git | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: make junit | |
run: | | |
git clone https://github.com/gabime/spdlog.git | |
mv spdlog/include/spdlog include/ | |
make | |
make junit || true | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt update -y | |
sudo apt install -y make g++ libboost-dev catch libreadline-dev libyaml-cpp-dev libspdlog-dev | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: make junit | |
run: | | |
make | |
make junit || true |