Skip to content

add feature - combine multiple commands in 1 command-line #168

add feature - combine multiple commands in 1 command-line

add feature - combine multiple commands in 1 command-line #168

Workflow file for this run

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.7_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.7_linux
path: ${{github.workspace}}/