line version update #166
Workflow file for this run
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: line abl_lnk build | |
on: | |
push: | |
branches: | |
- ableton_link_integration | |
pull_request: | |
branches: | |
- ableton_link_integration | |
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 | |
run: ./build.sh | |
- name: Remove build-only process files | |
run: | | |
rm -r ${{github.workspace}}/build/CMakeFiles | |
rm ${{github.workspace}}/build/*.cmake | |
rm ${{github.workspace}}/build/CMakeCache.txt | |
rm ${{github.workspace}}/build/Makefile | |
- name: line macOS Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: line_v0.6.1_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 | |
run: ./build.sh | |
- name: Remove build-only process files | |
run: | | |
rm -r ${{github.workspace}}/build/CMakeFiles | |
rm ${{github.workspace}}/build/*.cmake | |
rm ${{github.workspace}}/build/CMakeCache.txt | |
rm ${{github.workspace}}/build/Makefile | |
- name: line linux Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: line_v0.6.1_linux | |
path: ${{github.workspace}}/ |