Skip to content

status badge updating #32

status badge updating

status badge updating #32

Workflow file for this run

name: mglyphs release build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
macos_build:
runs-on: macos-latest
steps:
- name: Checkout
- uses: actions/checkout@v4
- name: Checkout submodules
run: git submodule update --init --recursive --remote
- name: Build Directory
run: cmake -E make_directory ${{github.workspace}}/build
- name: Run CMake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build ./build --config Release
- name: mglyphs macOS Artifact
uses: actions/upload-artifact@v4
with:
name: mglyphs_v0.2_macOS
path: ${{github.workspace}}/
# linux_build:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# - uses: actions/checkout@v4
# - name: Checkout submodules
# run: git submodule update --init --recursive --remote
# - name: Build Directory
# run: cmake -E make_directory ${{github.workspace}}/build
# - name: Run CMake
# run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
# - name: Build
# run: cmake --build ./build --config Release
# - name: mglyphs Linux Artifact
# uses: actions/upload-artifact@v4
# with:
# name: mglyphs_v0.2_linux
# path: ${{github.workspace}}/