Skip to content

Update CONTRIBUTORS.txt. #53

Update CONTRIBUTORS.txt.

Update CONTRIBUTORS.txt. #53

Workflow file for this run

name: Makefile Continuous Integrations
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
unit-test:
strategy:
matrix:
toolset: [gcc, clang]
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04]
include:
- sanitize: 1
- os: ubuntu-20.04 # Work-around for https://bugs.launchpad.net/ubuntu/+source/gcc-10/+bug/2029910
sanitize: 0
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Boost.Test
run: sudo apt-get --quiet --yes install libboost-test-dev
- name: Environment variables
run: make -r TOOLSET=${{ matrix.toolset }} env
- name: Toolset versions
run: make -r TOOLSET=${{ matrix.toolset }} versions
- name: Build and run unit tests
run: make -rj2 TOOLSET=${{ matrix.toolset }} example run_tests
- if: ${{ matrix.sanitize }}
name: Build and run unit tests with thread sanitizer
run: make -rj2 TOOLSET=${{ matrix.toolset }} BUILD=sanitize run_tests