Skip to content

Added missing skips in LilyPond lyrics generation #126

Added missing skips in LilyPond lyrics generation

Added missing skips in LilyPond lyrics generation #126

# This is a workflow to build MusicFormats and create an artifact of it
name: Build Windows latest Version
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20'
- name: Get latest CMake and ninja
uses: lukka/get-cmake@latest
- name: Build MusicFormats for Windows
run:
# shell: bash
# working-directory: build
# cd build; cmake --build .
cd build ; cmake . ; ls D:/a/musicformats/musicformats/build ; make
- name: Upload libraries and executables for Windows
uses: actions/upload-artifact@v3
with:
name: musicformats-windows-latest-artifact
path: |
MusicFormatsVersionNumber.txt
MusicFormatsVersionDate.txt
build/bin
build/lib
build/Makefile