File tree Expand file tree Collapse file tree 6 files changed +25
-1
lines changed Expand file tree Collapse file tree 6 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 507
507
}
508
508
]
509
509
},
510
+ {
511
+ "platforms" : [
512
+ {
513
+ "dockerfile" : " src/ubuntu/18.04/cross/illumos" ,
514
+ "os" : " linux" ,
515
+ "osVersion" : " bionic" ,
516
+ "tags" : {
517
+ "ubuntu-18.04-cross-illumos-$(System:TimeStamp)-$(System:DockerfileGitCommitSha)" : {}
518
+ }
519
+ }
520
+ ]
521
+ },
510
522
{
511
523
"platforms" : [
512
524
{
Original file line number Diff line number Diff line change
1
+ FROM mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-crossdeps
2
+
3
+ ADD rootfs.x64.tar crossrootfs
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env sh
2
+
3
+ rm -rf $PWD /rootfs* .tar
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env sh
2
+
3
+ SCRIPT=$( readlink -f " $0 " )
4
+ SCRIPTPATH=$( dirname " $SCRIPT " )
5
+ $SCRIPTPATH /../../../../build-scripts/build-rootfs.sh ubuntu-18.04 illumos x64
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ RUN apt-get update \
26
26
liblzma-dev \
27
27
libarchive-dev \
28
28
libbsd-dev \
29
+ libmpc-dev \
29
30
&& rm -rf /var/lib/apt/lists/*
30
31
31
32
RUN apt-get update \
Original file line number Diff line number Diff line change 31
31
32
32
echo " Using $dockerCrossDepsTag to clone arcade to fetch scripts used to build cross-toolset"
33
33
docker exec $buildRootFSContainer \
34
- git clone --depth 1 https://github.com/dotnet/arcade /scripts
34
+ git clone --depth 1 --single-branch https://github.com/dotnet/arcade /scripts
35
35
36
36
if [ $? -ne 0 ]; then
37
37
echo " Rootfs build failed: ` git clone https://github.com/dotnet/arcade /scripts` returned error"
You can’t perform that action at this time.
0 commit comments