Skip to content

Github actions cmake compilation. #39

Github actions cmake compilation.

Github actions cmake compilation. #39

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "master", "develop" ]
pull_request:
branches: [ "master", "develop" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: ConorMacBride/install-package@v1
with:
apt: libgtest-dev
- uses: actions/checkout@v3
- name: Build and test with autotools
run: autoreconf -fi
- name: configure
run: ./configure
- name: make
run: make -j
- name: make check
run: make -j check
- name: make distcheck
run: make -j distcheck
- name: Archive testing logs
if: '!cancelled()'
uses: actions/upload-artifact@v3
with:
name: gtest-logs
path: '**/*.log'
retention-days: 1
- name: Build and test with CMake
uses: threeal/cmake-action@latest
with:
args: -DNOSHELL_BUILD_TESTS=ON
run-test: true