From 7b8e07e94f804712837b1035aa7b18785b61c78f Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Mon, 27 May 2024 16:49:32 +0100 Subject: [PATCH] Add a GitHub Actions workflow to run on main branch (#3) Signed-off-by: Juan Cruz Viotti --- .github/workflows/package.yml | 47 +++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/package.yml diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml new file mode 100644 index 0000000..1f5fc50 --- /dev/null +++ b/.github/workflows/package.yml @@ -0,0 +1,47 @@ +name: JSON Schema + +on: + push: + branches: + - main + +jobs: + package: + strategy: + fail-fast: false + matrix: + platform: + - os: ubuntu-latest + cc: clang + cxx: clang++ + shell: sh + + defaults: + run: + shell: ${{ matrix.platform.shell }} + + runs-on: ${{ matrix.platform.os }} + env: + CC: ${{ matrix.platform.cc }} + CXX: ${{ matrix.platform.cxx }} + steps: + - uses: actions/checkout@v3 + - run: cmake --version + - name: Configure JSON Schema + run: > + cmake -S . -B ./build + -DCMAKE_BUILD_TYPE:STRING=Release + -DJSONSCHEMA_TESTS:BOOL=ON + -DBUILD_SHARED_LIBS:BOOL=OFF + -DCMAKE_COMPILE_WARNING_AS_ERROR:BOOL=ON + - run: cmake --build ./build --config Release --parallel 4 + - run: > + cmake --install ./build --prefix ./build/dist --config Release --verbose + --component intelligence_jsonschema + + # Not every CTest version supports the --test-dir option. If such option + # is not recognized, `ctest` will successfully exit finding no tests. + # Better to be sure and `cd` all the time here. + - run: cd ./build && ctest --build-config Release --output-on-failure --parallel + + - run: cpack --config build/CPackConfig.cmake -B build/out -C Release