CMake: Min macOS to 10.9 #185
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: nightly | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main, ci/** ] | |
concurrency: | |
group: environment-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
macbuild: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: flucoma/actions/env@main | |
- uses: flucoma/actions/sc@main | |
with: | |
branch: origin/main | |
- name: sign binaries | |
uses: flucoma/actions/distribution@main | |
with: | |
glob: '-e scx' | |
package: 'install' | |
output_type: 'dmg' | |
output: FluCoMa-SC-Mac-nightly | |
cert: ${{ secrets.CERT }} | |
certpwd: ${{ secrets.CERTPWD }} | |
teamid: ${{ secrets.WWDRTEAMID }} | |
apppwd: ${{ secrets.APPSTORECONNECTPWD }} | |
appusr: ${{ secrets.APPSTORECONNECTUSERNAME }} | |
- uses: actions/[email protected] | |
with: | |
name: macbuild | |
path: install/FluCoMa-SC-Mac-nightly.dmg | |
winbuild: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: flucoma/actions/env@main | |
- uses: flucoma/actions/sc@main | |
with: | |
branch: origin/main | |
- name: remove pdb files | |
run: Remove-Item install -Recurse -Include *.pdb | |
- name: compress archive | |
run: 7z a FluCoMa-SC-Windows-nightly.zip FluidCorpusManipulation | |
working-directory: install | |
- uses: actions/[email protected] | |
with: | |
name: winbuild | |
path: install/FluCoMa-SC-Windows-nightly.zip | |
linuxbuild: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: flucoma/actions/env@main | |
- uses: flucoma/actions/sc@main | |
with: | |
branch: origin/main | |
- name: compress archive | |
run: tar -zcvf FluCoMa-SC-Linux-nightly.tar.gz FluidCorpusManipulation | |
working-directory: install | |
- uses: actions/[email protected] | |
with: | |
name: linuxbuild | |
path: install/FluCoMa-SC-Linux-nightly.tar.gz | |
release: | |
runs-on: ubuntu-20.04 | |
needs: [macbuild, winbuild, linuxbuild] | |
steps: | |
- uses: actions/[email protected] | |
with: | |
name: macbuild | |
- uses: actions/[email protected] | |
with: | |
name: winbuild | |
- uses: actions/[email protected] | |
with: | |
name: linuxbuild | |
- uses: dev-drprasad/[email protected] | |
with: | |
delete_release: true # default: false | |
tag_name: nightly # tag name to delete | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: create release | |
uses: ncipollo/release-action@v1 | |
with: | |
name: FluCoMa SuperCollider Nightly Release | |
artifacts: "FluCoMa*" | |
body: "This is a nightly build of the FluCoMa SuperCollider package. As such, be warned there may be bugs or other unexpected behaviour. The build hash is ${{ github.sha }}" | |
tag: nightly | |
prerelease: true | |
draft: false | |
allowUpdates: true |