Skip to content

update linux CI with container #8

update linux CI with container

update linux CI with container #8

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
container: skramm/debian_boost
steps:
- uses: actions/checkout@v3
- name: install tools
run: sudo apt-get update; sudo apt-get -y install libboost-all-dev
- name: check version
run: gcc --version; clang --version; cat /usr/include/boost/version.hpp | grep BOOST_LIB_VERSION
- name: make1
run: make
- name: clean
run: make clean
- name: make2
run: make CXX=clang++