mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add rust rework, man_db update, glibc_standalone rebuild, and adjustment of rpath handling during install. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * bump version Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add glibc_standalone to CREW_STANDALONE_UPGRADE_ORDER. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Remove debug code. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
13 lines
417 B
Bash
Executable File
13 lines
417 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
|
|
set -x
|
|
tools/build_updated_packages.rb --skip || exit 1
|