Skip to content

Commit

Permalink
feat: add support for -dx and -hwe specific for arches (#224)
Browse files Browse the repository at this point in the history
Co-authored-by: Jorge O. Castro <[email protected]>
  • Loading branch information
tulilirockz and castrojo authored Feb 2, 2025
1 parent 9411a2b commit c75435f
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions build_scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,15 @@ run_buildscripts_for "$(arch)"
if [ "$ENABLE_DX" == "1" ]; then
copy_systemfiles_for dx
run_buildscripts_for dx
copy_systemfiles_for "$(arch)-dx"
run_buildscripts_for "$(arch)/dx"
fi

if [ "$ENABLE_HWE" == "1" ]; then
copy_systemfiles_for hwe
run_buildscripts_for hwe
copy_systemfiles_for "$(arch)-hwe"
run_buildscripts_for "$(arch)/hwe"
fi


Expand Down
File renamed without changes.
Empty file.
4 changes: 3 additions & 1 deletion build_scripts/overrides/x86_64/10-brew.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
set -xeuo pipefail

mkdir -p /var/home
# Homebrew

dnf -y --enablerepo copr:copr.fedorainfracloud.org:ublue-os:staging install ublue-brew

touch /.dockerenv
curl --retry 3 -Lo /tmp/brew-install https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh
chmod +x /tmp/brew-install
Expand Down
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.

0 comments on commit c75435f

Please sign in to comment.