File tree Expand file tree Collapse file tree 3 files changed +12
-9
lines changed
scripts/Docker/ubuntu16/clang-cross
utils/NativeLibraryMiniTest/docker Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ set -e
3+
4+ DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " > /dev/null 2>&1 && pwd ) "
5+
6+ ARCH=" arm"
7+ if [ " $1 " ]; then
8+ ARCH=" $1 "
9+ fi
10+
11+ (cd $DIR && docker build --tag skiasharp-$ARCH .)
12+ (cd $DIR /../../../../ && docker run --rm --name skiasharp-$ARCH --volume $( pwd) :/work skiasharp-$ARCH /bin/bash ./bootstrapper.sh -t externals-linux-clang-cross -c Release --buildarch=$ARCH )
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
55mkdir -p $DIR /source
66cp -R $DIR /../source/* $DIR /source/
77cp -R $DIR /NativeLibraryMiniTest.csproj $DIR /source/
8- cp -R $DIR /nuget.config $DIR /source/
98cp -R $DIR /../../../output/native/linux/arm/libSkiaSharp.so $DIR /source/
109
1110(cd $DIR && docker build --tag skiasharp/minitest .)
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments