Skip to content

Commit

Permalink
add Github Actions to automatically build on every push
Browse files Browse the repository at this point in the history
  • Loading branch information
kamarya committed Sep 8, 2024
1 parent 1b7dc72 commit c5ca70c
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 1 deletion.
55 changes: 55 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Build and Test

on: [push]

jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [gcc, clang]

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Cache directories
uses: actions/cache@v2
with:
path: ~/.cache
key: ${{ runner.os }}-cache

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install lcov
- name: Create build directory
run: mkdir build

- name: Configure CMake
run: |
cd build
cmake .. -DCODE_COVERAGE=ON -DEXAMPLES=OFF
- name: Build and test
run: |
cd build
make
make test
- name: Collect code coverage
run: |
lcov --directory . --capture --output-file coverage.info
lcov --remove coverage.info '/usr/*' "${HOME}"'/.cache/*' --output-file coverage.info
lcov --list coverage.info
- name: Upload code coverage to Codecov
run: |
bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"
- name: Upload code coverage to GitHub
uses: actions/upload-artifact@v2
with:
name: coverage
path: coverage.info
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Susa Open Source Project [![codecov][codecov-badge]][codecov-link]
# Susa Open Source Project

![example workflow](https://github.com/libsusa/susa/actions/workflows/github-actions.yml/badge.svg) [![codecov][codecov-badge]][codecov-link]

Susa is a mathematics and signal processing C++ [framework](https://en.wikipedia.org/wiki/Software_framework) based on [KISS](https://en.wikipedia.org/wiki/KISS_principle)
principle. It is stand-alone with a modern architecture. It is designed not to have any dependencies to none standard third
Expand Down

0 comments on commit c5ca70c

Please sign in to comment.