Files
chromebrew/tools/github_actions_update_builder_allowing_failures.sh
Satadru Pramanik, DO, MPH, MEng 8444fe7e09 Add Another Build Workflow. (#11933)
Signed-off-by: Satadru Pramanik <satadru@gmail.com>
2025-05-23 05:50:45 +00:00

12 lines
441 B
Bash
Executable File

#!/bin/bash
# Mapping of /output should be set in the docker run options for the
# run-updater step of the generate job in .github/workflows/Updater.yml
cd /output/ || exit 1
crew update && yes | crew upgrade || true
unset LD_AUDIT
yes | crew upgrade || true
source ~/.bashrc
git config --global --add safe.directory /output
export CREW_AGREE_TIMEOUT_SECONDS=1
tools/build_updated_packages.rb --skip --continue-after-failed-builds || exit 1