Skip to content

Review comments

Review comments #7

name: Ubuntu-GCC10-CI
'on':
- push
- pull_request
permissions:
contents: read
jobs:
ci:
name: ubuntu-gcc
runs-on: ubuntu-latest
env:
CC: gcc-10
CXX: g++-10
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- run: |
sudo apt update
sudo apt install gcc-10 g++-10
shell: bash
- name: Build and Test
run: |
mkdir build
cd build
cmake -DENABLE_ROARING_TESTS=ON ..
cmake --build .
ctest . --output-on-failure