Skip to content

build(ci): enable cmake workflow #75

build(ci): enable cmake workflow

build(ci): enable cmake workflow #75

Workflow file for this run

name: CMake Build
on:
pull_request:
branches: [ dev ]
push:
branches: [ dev ]
jobs:
build:
runs-on: ubuntu-latest
container: 'centos:7'
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
curl -fsSLO --compressed https://cmake.org/files/v3.22/cmake-3.22.3-linux-x86_64.tar.gz
tar -zxvf cmake-3.22.3-linux-x86_64.tar.gz -C /usr --strip-components=1 --no-same-owner
yum install -y which git wget rpm rpm-build cpio make glibc-devel glibc-headers libstdc++-static binutils zlib zlib-devel bison flex java-11-openjdk
- name: Build with cmake
run: mkdir build && cd build && cmake .. && cmake --build . -j 8