From 9ba43b12bc22925e4013b714fa0cfa9e481df161 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sun, 8 Aug 2021 12:15:16 +0300 Subject: [PATCH] - added continuous integration via github actions --- .github/workflows/continuous_integration.yml | 50 ++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/workflows/continuous_integration.yml diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml new file mode 100644 index 0000000..5b181b1 --- /dev/null +++ b/.github/workflows/continuous_integration.yml @@ -0,0 +1,50 @@ +name: Continuous Integration + +on: [push, pull_request] + +jobs: + build: + name: ${{ matrix.config.name }} | ${{ matrix.build_type }} + runs-on: ${{ matrix.config.os }} + strategy: + fail-fast: false + matrix: + config: + - { + name: "Visual Studio 64-bit", + os: windows-2019, + extra_options: "-A x64" + } + - { + name: "Visual Studio 32-bit", + os: windows-2019, + extra_options: "-A Win32" + } + - { + name: "macOS", + os: macos-10.15 + } + - { + name: "Linux GCC", + os: ubuntu-20.04 + } + - { + name: "Linux Clang", + os: ubuntu-20.04, + extra_options: "-DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++" + } + build_type: ["Release", "Debug"] + + steps: + - uses: actions/checkout@v2 + + - name: Configure + shell: bash + run: | + cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ${{ matrix.config.extra_options }} . + + - name: Build + shell: bash + run: | + export MAKEFLAGS=--keep-going + cmake --build build --config ${{ matrix.build_type }} --parallel 3