Skip to content

Commit 8d7154d

Browse files
committed
Ensure cross test images have patch
For `armv7-linux-androideabi`, in GIX_TEST_IGNORE_ARCHIVES=1 cross test ... as tested by running GIX_TEST_IGNORE_ARCHIVES=1 just cross-test-android the `id::ancestors::pre_epoch` test failed with: /project/gix/tests/fixtures/make_pre_epoch_repo.sh: line 12: patch: command not found This fixes it by making sure `patch` is installed in the container.
1 parent d3a9f5f commit 8d7154d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

etc/docker/Dockerfile.test-cross

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get update && \
1010
apt-key adv --keyserver keyserver.ubuntu.com \
1111
--recv-keys F911AB184317630C59970973E363C90F8F1B6217 && \
1212
apt-get update && \
13-
apt-get install --no-install-recommends -y git jq && \
13+
apt-get install --no-install-recommends -y git jq patch && \
1414
rm -rf /var/lib/apt/lists/* && \
1515
to_patch=/android-runner && \
1616
patcher='s/^export LD_PRELOAD=/test "${NO_PRELOAD_CXX:-0}" != 0 || &/' && \

0 commit comments

Comments
 (0)