Resolve minor build related issues #241
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: Meson build | |
on: | |
push: | |
branches: [ master ] | |
# This is what will cancel the workflow | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[skip_build]')" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build ffead-cpp with meson | |
run: | | |
cd docker/os-based | |
docker build -f DockerFile-Ubuntu-x64-ffead-cpp-meson . |