Skip to content

Merge pull request #14 from CognexVisionSoftware/feature/lambda-impro… #10

Merge pull request #14 from CognexVisionSoftware/feature/lambda-impro…

Merge pull request #14 from CognexVisionSoftware/feature/lambda-impro… #10

Workflow file for this run

name: Linux
on: [push]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: seanmiddleditch/gha-setup-ninja@master
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_EXAMPLES=OFF -G Ninja
- name: Build
run: cmake --build ${{github.workspace}}/build
- name: Test
run: cmake --build ${{github.workspace}}/build --target run_tests