mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-17 16:40:07 +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
170 B
Bash
Executable File
9 lines
170 B
Bash
Executable File
#!/bin/sh
|
|
|
|
lib="${0%/*}/lib/audacity"
|
|
|
|
export LD_LIBRARY_PATH="${lib}:${LD_LIBRARY_PATH}"
|
|
export AUDACITY_MODULES_PATH="${lib}/modules"
|
|
|
|
exec "${0%/*}/bin/audacity" "$@"
|