[r60]: / trunk / wharfie / tests / Toolchain2 / Wharfile  Maximize  Restore  History

Download this file

13 lines (5 with data), 304 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# Testcase: Check if command of TOOLCHAIN action is executed in the host sysroot

FROM debian_amd64_stretch

TOOLCHAIN toolchain.tar echo "test"; pwd; touch /tmp/file-in-host-sysroot

RUN HOST tar -tf ../toolchain.tar  | grep ./host/tmp/file-in-host-sysroot; \
    [ $? == 0 ] && touch ../result.tar