This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
[DX-376] Switch license from Apache 2.0 to LGPL-3.0 #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
permissions: read-all | |
jobs: | |
build-and-test: | |
timeout-minutes: 60 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Conan | |
uses: turtlebrowser/get-conan@main | |
with: | |
version: 1.59.0 | |
- name: Cache Conan Packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.conan/data | |
key: ${{ matrix.os }}-conan-${{ hashFiles('**/.conan') }} | |
restore-keys: | | |
${{ matrix.os }}-conan- | |
- name: Restore Packages | |
run: | | |
conan install ./.conan -if ./build --build missing --profile ./.conan/profiles/workflows/${{ matrix.os }} | |
- name: Run CMake | |
run: | | |
cmake -S . -B ./build -DCMAKE_BUILD_TYPE=Release -DENJINSDK_BUILD_SHARED=ON -DENJINSDK_INCLUDE_BEAM=ON -DENJINSDK_INCLUDE_FUEL_TANKS=ON -DENJINSDK_INCLUDE_MARKETPLACE=ON -DENJINSDK_BUILD_TESTS=ON | |
- name: Build | |
run: | | |
cmake --build ./build --config Release -j 12 | |
- name: Test | |
run: | | |
cd ./build && ctest --verbose --build-config Release |