update boost asio udp client #13
This file contains hidden or 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: 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 |