-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Towards github actions, step 2 (#153)
Move the azure build for linux into a script also. Next is windows into a script, then docker, then same into release pipeline, then retire azure, but that's not today
- Loading branch information
Showing
3 changed files
with
35 additions
and
17 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
cmake -Bignore/build -DSTOCHAS_VERSION=${STOCHAS_VERSION} | ||
cmake --build ignore/build --config Release | ||
LINARCH=`uname -m` | ||
GH=`git log -1 --format=%h` | ||
NM=stochas-${STOCHAS_VERSION}.${GH}.linux-${LINARCH}.tgz | ||
mkdir -p ignore/build/product/ | ||
mkdir -p ignore/build/Stochas/Standalone | ||
cp -r ignore/build/stochas_artefacts/VST3/* build/Stochas | ||
cp -r ignore/build/stochas_artefacts/CLAP/* build/Stochas | ||
cp -r ignore/build/stochas_artefacts/Standalone/* build/Stochas/Standalone | ||
tar cvzf "ignore/build/product/${NM}" -C ignore/build Stochas |
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