mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-11 17:13:37 +02:00
Move GitHub Actions CI scripts into separate files
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
This commit is contained in:
committed by
Dmitry Vedenko
parent
3ebebbb360
commit
4b5c95d7fe
@@ -168,8 +168,12 @@ include( CMakePushCheckState )
|
||||
include( GNUInstallDirs )
|
||||
include( TestBigEndian )
|
||||
|
||||
set_from_env(SENTRY_DSN_KEY)
|
||||
set_from_env(SENTRY_HOST)
|
||||
set_from_env(SENTRY_PROJECT)
|
||||
|
||||
cmake_dependent_option(
|
||||
${_OPT}has_sentry_reporting
|
||||
${_OPT}has_sentry_reporting
|
||||
"Build support for sending errors to Sentry"
|
||||
On
|
||||
"${_OPT}has_networking;DEFINED SENTRY_DSN_KEY;DEFINED SENTRY_HOST;DEFINED SENTRY_PROJECT"
|
||||
@@ -525,3 +529,4 @@ execute_process( COMMAND
|
||||
print_properties( TARGET "wxWidgets" )
|
||||
#]]
|
||||
|
||||
include( Package ) # do this last
|
||||
|
Reference in New Issue
Block a user