Skip to content

Commit

Permalink
Pipeline artifact cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
asb2m10 committed Jun 12, 2022
1 parent 306197a commit bda3dc2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/project-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: linux-bin
${{github.workspace}}/build/Source/*_artefacts/*/VST3/*.vst3/**
${{github.workspace}}/build/Source/*_artefacts/*/CLAP/*.clap/**
${{github.workspace}}/build/Source/*_artefacts/*/Standalone/*
path: |
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/VST3/*.vst3/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/CLAP/*.clap/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/Standalone/*
build-macos:
runs-on: macos-10.15
Expand All @@ -65,10 +66,10 @@ jobs:
with:
name: macos-bin
path: |
${{github.workspace}}/build/Source/*_artefacts/*/VST3/*.vst3/**
${{github.workspace}}/build/Source/*_artefacts/*/CLAP/*.clap/**
${{github.workspace}}/build/Source/*_artefacts/*/AU/*.component/**
${{github.workspace}}/build/Source/*_artefacts/*/Standalone/*.app/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/VST3/*.vst3/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/CLAP/*.clap/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/AU/*.component/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/Standalone/*.app/**
build-windows:
runs-on: windows-latest
Expand All @@ -94,6 +95,6 @@ jobs:
with:
name: windows-bin
path: |
${{github.workspace}}/build/Source/*_artefacts/*/VST3/*.vst3/**
${{github.workspace}}/build/Source/*_artefacts/*/CLAP/*.clap/**
${{github.workspace}}/build/Source/*_artefacts/*/Standalone/*.exe
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/VST3/*.vst3/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/CLAP/*.clap/**
${{github.workspace}}/build/Source/*_artefacts/${{env.BUILD_TYPE}}/Standalone/*.exe
1 change: 1 addition & 0 deletions Source/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ target_compile_definitions(${BaseTargetName} PUBLIC
JUCE_ALSA=$<IF:$<BOOL:${DEXED_ALSA}>,1,0>
JUCE_MODAL_LOOPS_PERMITTED=1 # needed for FileBrowser in CartManager
JUCE_DISPLAY_SPLASH_SCREEN=0
JUCE_REPORT_APP_USAGE=0
)

target_link_libraries(${BaseTargetName}
Expand Down

0 comments on commit bda3dc2

Please sign in to comment.