Skip to content

Change from debian:stable to debian:bullseye #18

Change from debian:stable to debian:bullseye

Change from debian:stable to debian:bullseye #18

Workflow file for this run

name: CMake
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup env
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends ca-certificates build-essential libomp-dev libgdal-dev cmake
- name: Configure 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}}