Skip to content

support building with GCC 13 & drop old OSs #85

support building with GCC 13 & drop old OSs

support building with GCC 13 & drop old OSs #85

Workflow file for this run

name: is2-ci
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
timeout-minutes: 30
strategy:
matrix:
os: [ubuntu-24.04, ubuntu-22.04, ubuntu-20.04]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Ubuntu 22 dependencies
if: matrix.os == 'ubuntu-22.04' || matrix.os == 'ubuntu-24.04'
run: |
sudo apt-get update
sudo apt-get install -y libunwind-dev libgoogle-perftools-dev rapidjson-dev
- name: Install Ubuntu 20 dependencies
if: matrix.os == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libgoogle-perftools-dev rapidjson-dev
- name: Run build script
run: |
./build.sh