mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* gcc => 15.2 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * gcc-15.2: Build Run on linux/arm/v7. * gcc-15.2: Package File Update Run on linux/386 container. * Update gcc_lib and gcc_dev Signed-off-by: Satadru Pramanik <satadru@gmail.com> * gcc-15.2: Package File Update Run on linux/386 container. * Update libssp, make sure build actions have rubocop available. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * gcc-15.2: Build Run on linux/arm/v7. * Adjust for rubocop issues. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * gcc-15.2: Package File Update Run on linux/386 container. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
15 lines
539 B
Bash
Executable File
15 lines
539 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
|
|
# Deal with a regexp_parser gem issue
|
|
gem install regexp_parser
|
|
yes | crew reinstall ruby_rubocop
|
|
tools/build_updated_packages.rb --skip --continue-after-failed-builds || exit 1
|