Skip to content

+ add specific exercise for bitbucket pipelines #142

+ add specific exercise for bitbucket pipelines

+ add specific exercise for bitbucket pipelines #142

Workflow file for this run

name: CMake exercise
on:
- push
- pull_request
jobs:
cmake-exercise:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: configure and build
working-directory: topics/build_systems/code
run: |
mkdir build
cmake -S . -B build
cmake --build build
- name: run tests
working-directory: topics/build_systems/code
run: |
cmake --build build --target test