mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-07 13:03:45 +02:00
More build targets.
This commit is contained in:
parent
9784393b15
commit
8b78f19335
3 changed files with 23 additions and 0 deletions
|
@ -17,6 +17,9 @@ cd ..
|
||||||
git archive --format=tar.gz --prefix=ZeroTierOne/ -o linux-build-farm/zt1-src.tar.gz HEAD
|
git archive --format=tar.gz --prefix=ZeroTierOne/ -o linux-build-farm/zt1-src.tar.gz HEAD
|
||||||
cd linux-build-farm
|
cd linux-build-farm
|
||||||
|
|
||||||
|
# Note that --privileged is used so we can bind mount VM shares when building in a VM.
|
||||||
|
# It has no other impact or purpose, but probably doesn't matter here in any case.
|
||||||
|
|
||||||
for distro in $*; do
|
for distro in $*; do
|
||||||
cd $distro
|
cd $distro
|
||||||
|
|
||||||
|
|
10
linux-build-farm/ubuntu-xenial/x64/Dockerfile
Normal file
10
linux-build-farm/ubuntu-xenial/x64/Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
FROM ubuntu:xenial
|
||||||
|
MAINTAINER Adam Ierymenko <adam.ierymenko@zerotier.com>
|
||||||
|
|
||||||
|
RUN apt-get update
|
||||||
|
RUN apt-get install -y build-essential debhelper libhttp-parser-dev liblz4-dev libnatpmp-dev dh-systemd ruby-ronn g++ make devscripts clang-3.8
|
||||||
|
|
||||||
|
ADD zt1-src.tar.gz /
|
||||||
|
|
||||||
|
RUN ln -sf /usr/bin/clang++-3.8 /usr/bin/clang++
|
||||||
|
RUN ln -sf /usr/bin/clang-3.8 /usr/bin/clang
|
10
linux-build-farm/ubuntu-xenial/x86/Dockerfile
Normal file
10
linux-build-farm/ubuntu-xenial/x86/Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
FROM f69m/ubuntu32:xenial
|
||||||
|
MAINTAINER Adam Ierymenko <adam.ierymenko@zerotier.com>
|
||||||
|
|
||||||
|
RUN apt-get update
|
||||||
|
RUN apt-get install -y build-essential debhelper libhttp-parser-dev liblz4-dev libnatpmp-dev dh-systemd ruby-ronn g++ make devscripts clang-3.8
|
||||||
|
|
||||||
|
ADD zt1-src.tar.gz /
|
||||||
|
|
||||||
|
RUN ln -sf /usr/bin/clang++-3.8 /usr/bin/clang++
|
||||||
|
RUN ln -sf /usr/bin/clang-3.8 /usr/bin/clang
|
Loading…
Add table
Reference in a new issue