Skip to content

Commit

Permalink
fixup! Fix i386 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAssassin committed Jul 12, 2023
1 parent b1c1b9e commit e86907a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ci/build-appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
set -euxo pipefail

# use RAM disk if possible
if [ "${CI:-}" == "" ] && [ -d /dev/shm ]; then
TEMP_BASE=/dev/shm
if [ "${CI:-}" == "" ] && [ -d /docker-ramdisk ]; then
TEMP_BASE=/docker-ramdisk
else
TEMP_BASE=/tmp
fi
Expand Down
3 changes: 2 additions & 1 deletion ci/build-in-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ case "$ARCH" in
image_prefix=amd64
platform=linux/amd64
;;
i686)
i386)
image_prefix=i386
platform=linux/i386
;;
Expand Down Expand Up @@ -53,6 +53,7 @@ docker run \
-v "$repo_root":/source:ro \
-v "$PWD":/out \
-w /out \
--tmpfs /docker-ramdisk:exec,mode=777 \
"$image" \
bash -exo pipefail \
<<\EOF
Expand Down

0 comments on commit e86907a

Please sign in to comment.