Skip to content

boost asio edits due to deprecation of io_service #10

boost asio edits due to deprecation of io_service

boost asio edits due to deprecation of io_service #10

Workflow file for this run

name: CI-testing
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
job2:
name: CI-testing
strategy:
matrix:
os: [ubuntu-24.04, ubuntu-26.04]
compiler: [g++, clang++]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: -- boost install --
run: sudo apt-get install -y libboost-all-dev
- name: check version
run: gcc --version; clang --version; cat /usr/include/boost/version.hpp | grep "BOOST_LIB_VERSION"
- name: --- make demo ---
run: make demo
- name: --- make test ---
run: make test