Skip to content

Update the project to use VCPKG and fix building on Windows #46

Update the project to use VCPKG and fix building on Windows

Update the project to use VCPKG and fix building on Windows #46

Workflow file for this run

name: Linux C/C++ CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-18.04 ]
compiler: [ g++ ]
name: ${{ matrix.compiler }} on ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Install dependencies
run: sudo bash scripts/install.sh --no-build
- name: Normal build
run: export CC=gcc-8 && export CXX=g++-8 && sh scripts/build.sh
- name: Normal build unit tests
run: sh scripts/tests.sh