mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-13 17:38:03 -05:00
* elfutils => 0.192 & adjust build wortkflow Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/arm/v7 to elfutils * Cleanup workflow. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to elfutils * Add built packages for linux/amd64 to elfutils * Suggested changes. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
10 lines
328 B
Bash
Executable File
10 lines
328 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
|
|
git config --global --add safe.directory /output
|
|
export CREW_AGREE_TIMEOUT_SECONDS=1
|
|
set -x
|
|
tools/build_updated_packages.rb --skip || exit 1
|