Skip to content

barebones ci file

barebones ci file #1

Workflow file for this run

name: compile & stash
on:
push:
branches:
- 'development'
- 'devel/*'
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Get the source
uses: actions/checkout@v4
- name: Run cmake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}