Skip to content

Commit

Permalink
ci: Add GitHub Actions based workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfr committed Jul 30, 2023
1 parent ea920eb commit 7d0ed55
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: CI

on:
push:
branches:
- master
paths-ignore:
- "**.rst"
- "Docs/**"
pull_request:
paths-ignore:
- "**.rst"
- "Docs/**"

jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 3
matrix:
os: [ubuntu-20.04]
# 3.4.x: Excluded because of "error while loading shared libraries: libidn.so.11: cannot open shared object file: No such file or directory"
cmake-version: [
"2.8.x",
"3.0.x", "3.8.x", "3.12.x", "3.14.x",
"3.16.x", "3.17.x", "3.18.x", "3.19.x", "3.20.x", "3.21.x",
"3.22.x", "3.23.x", "3.24.x", "3.25.x", "3.26.x",
"latest"
]

name: Tests on ${{ matrix.os }} using ${{ matrix.cmake-version }}
steps:
- uses: actions/checkout@v3

- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1.14.1
with:
cmake-version: ${{ matrix.cmake-version }}

- name: Setup ninja
uses: urkle/action-get-ninja@v1

- name: Configure
run: |
mkdir ${{github.workspace}}/build && cd $_
cmake -DCMAKE_BUILD_TYPE:STRING=Release ${{github.workspace}}/Tests
- name: Test
run: |
cd ${{github.workspace}}/build
ctest -C Release -V

0 comments on commit 7d0ed55

Please sign in to comment.