Skip to content

Commit

Permalink
Debuntu: Add a warning regarding issue 773 on non-CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Tk-Glitch committed Oct 10, 2022
1 parent 97dec06 commit 1a2f9e6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/proton-ubuntu-nopackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
sed -i 's/LOCAL_PRESET=""/LOCAL_PRESET="none"/' proton-tkg.cfg
sed -i 's/build_gstreamer="false"/build_gstreamer="true"/' proton-tkg.cfg
sed -i 's/lib32_gstreamer="false"/lib32_gstreamer="true"/' proton-tkg.cfg
echo '_ci_build="true"' >> proton-tkg.cfg
touch tarplz
yes|./proton-tkg.sh
- name: Archive the artifacts
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/wine-lol.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
cd wine-tkg-git
sed -i 's/distro=""/distro="debuntu"/' customization.cfg
sed -i 's/lol920_fix="false"/lol920_fix="true"/' customization.cfg
echo '_ci_build="true"' >> customization.cfg
touch tarplz
yes|./non-makepkg-build.sh
- name: Archive the artifacts
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/wine-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
sudo aptitude remove -y '?narrow(?installed,?version(deb.sury.org))'
cd wine-tkg-git
sed -i 's/distro=""/distro="debuntu"/' customization.cfg
echo '_ci_build="true"' >> customization.cfg
touch tarplz
yes|./non-makepkg-build.sh
- name: Archive the artifacts
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/wine-valvexbe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
cd wine-tkg-git
sed -i 's/distro=""/distro="debuntu"/' customization.cfg
sed -i 's/LOCAL_PRESET=""/LOCAL_PRESET="valve-exp-bleeding"/' customization.cfg
echo '_ci_build="true"' >> customization.cfg
touch tarplz
yes|./non-makepkg-build.sh
- name: Archive the artifacts
Expand Down
4 changes: 4 additions & 0 deletions wine-tkg-git/non-makepkg-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ pkgver() {
if [ -n "$_nomakepkg_dep_resolution_distro" ]; then
source "$_where"/wine-tkg-scripts/deps
if [ "$_nomakepkg_dep_resolution_distro" = "debuntu" ]; then
if [ "$_ci_build" != "true" ]; then
warning "PLEASE MAKE SURE TO READ https://github.com/Frogging-Family/wine-tkg-git/issues/773 BEFORE ATTEMPTING TO USE \"debuntu\" dependency resolution"
read -rp "Either press enter to continue, or ctrl+c to leave."
fi
_debuntu_64
elif [ "$_nomakepkg_dep_resolution_distro" = "fedora" ]; then
_fedora_6432
Expand Down

0 comments on commit 1a2f9e6

Please sign in to comment.