mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-01 08:32:32 +02:00
Break the workflow into smaller stages (Configure, Build, Install, Package, etc.) so that you can see exactly which stage failed in the GitHub Actions run log. Create a separate Bash CI script for each job stage (configure.sh, build.sh, install.sh, package.sh, etc.) to reduce the size of the main YAML workflow file and enable Bash syntax highlighting. Close #917
9 lines
183 B
Bash
Executable File
9 lines
183 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
((${BASH_VERSION%%.*} >= 4)) || { echo >&2 "$0: Error: Please upgrade Bash."; exit 1; }
|
|
|
|
set -euxo pipefail
|
|
|
|
cd build
|
|
cpack -C "${AUDACITY_BUILD_TYPE}" --verbose
|