-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move linux-riscv64 and haiku-x64 to 22.04
- Loading branch information
Showing
13 changed files
with
147 additions
and
46 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
FROM mcr.microsoft.com/powershell:7.2-ubuntu-22.04 | ||
|
||
# Install tools used by the VSO build automation. | ||
RUN apt-get update \ | ||
&& apt-get install -y \ | ||
git \ | ||
nodejs \ | ||
npm \ | ||
tar \ | ||
zip \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& npm install -g [email protected] \ | ||
&& npm cache clean --force | ||
|
||
# Runtime dependencies | ||
RUN apt-get update \ | ||
&& apt-get install -y \ | ||
autoconf \ | ||
automake \ | ||
build-essential \ | ||
gettext \ | ||
jq \ | ||
libcurl4-openssl-dev \ | ||
libgdiplus \ | ||
libicu-dev \ | ||
libkrb5-dev \ | ||
liblttng-ust-dev \ | ||
libnuma-dev \ | ||
libssl-dev \ | ||
libtool \ | ||
libunwind8 \ | ||
libunwind8-dev \ | ||
python3 \ | ||
uuid-dev \ | ||
&& rm -rf /var/lib/apt/lists/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-crossdeps | ||
|
||
ADD rootfs.x64.tar crossrootfs |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-crossdeps | ||
|
||
ADD rootfs.riscv64.tar crossrootfs |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env sh | ||
|
||
SCRIPT=$(readlink -f "$0") | ||
SCRIPTPATH=$(dirname "$SCRIPT") | ||
$SCRIPTPATH/../../../../build-scripts/build-rootfs.sh ubuntu-22.04 jammy riscv64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
FROM mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-coredeps | ||
|
||
# Install the base toolchain we need to build anything (clang, cmake, make and the like). | ||
RUN apt-get update \ | ||
&& apt-get install -y \ | ||
apt-transport-https \ | ||
ca-certificates \ | ||
gnupg \ | ||
software-properties-common \ | ||
wget \ | ||
&& wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc | apt-key add - \ | ||
&& apt-add-repository 'deb https://apt.kitware.com/ubuntu/ jammy main' \ | ||
&& apt-get update \ | ||
&& apt-get install -y \ | ||
binfmt-support \ | ||
binutils-arm-linux-gnueabihf \ | ||
bison \ | ||
bisonc++ \ | ||
build-essential \ | ||
cmake \ | ||
cpio \ | ||
debootstrap \ | ||
flex \ | ||
gdb \ | ||
make \ | ||
nasm \ | ||
qemu \ | ||
qemu-user-static \ | ||
rpm2cpio \ | ||
libbz2-dev \ | ||
libz-dev \ | ||
liblzma-dev \ | ||
libarchive-dev \ | ||
libbsd-dev \ | ||
libmpc-dev \ | ||
libxml2-utils \ | ||
libzstd-dev \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# install llvm-toolchain v15 using official script | ||
RUN wget -O- https://apt.llvm.org/llvm.sh | bash -s -- 15 \ | ||
clang \ | ||
clang-tools \ | ||
liblldb-dev \ | ||
lld \ | ||
lldb \ | ||
llvm \ | ||
python3-lldb \ | ||
&& rm -rf /var/lib/apt/lists/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters