Fixed build issues II [docker_verify] #265
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: Xmake 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@v4 | |
- name: Build ffead-cpp with xmake | |
run: | | |
cd docker/os-based | |
docker build -f DockerFile-Ubuntu-x64-ffead-cpp-xmake . |