Merge pull request #61 from acoustic-warfare/awpu #60
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: Docker Image CI and CMake Checks | |
on: | |
push: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build-image: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Pull the Docker image | |
run: docker image pull karlkorv/beamformer:latest | |
- name: Run cmake in the Docker image | |
run: docker run --rm -v ${{ github.workspace }}:/usr/src/app -w /usr/src/app karlkorv/beamformer:latest /bin/bash -c "cmake -S . -B /build && cmake --build /build" |