-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
145 additions
and
5 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -14,7 +14,6 @@ jobs: | |
pool: | ||
vmImage: 'ubuntu-16.04' | ||
strategy: | ||
maxParallel: 3 | ||
matrix: | ||
amd64: | ||
buildArch: 'amd64' | ||
|
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
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,27 @@ | ||
ARG BUILD_VERSION | ||
FROM arm64v8/debian:${BUILD_VERSION}-slim | ||
|
||
# QEMU for crossbuilds | ||
COPY qemu-aarch64-static /usr/bin/qemu-aarch64-static | ||
|
||
# Default ENV | ||
ENV LANG C.UTF-8 | ||
|
||
# Set shell | ||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
# Base system | ||
ARG BASHIO_VERSION=0.3.2 | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
bash \ | ||
jq \ | ||
tzdata \ | ||
curl \ | ||
ca-certificates \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
\ | ||
&& mkdir -p /tmp/bashio \ | ||
&& curl -L -s https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz | tar -xzf - --strip 1 -C /tmp/bashio \ | ||
&& mv /tmp/bashio/lib /usr/lib/bashio \ | ||
&& ln -s /usr/lib/bashio/bashio /usr/bin/bashio \ | ||
&& rm -rf /tmp/bashio |
Binary file not shown.
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,24 @@ | ||
ARG BUILD_VERSION | ||
FROM debian:${BUILD_VERSION}-slim | ||
|
||
# Default ENV | ||
ENV LANG C.UTF-8 | ||
|
||
# Set shell | ||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
# Base system | ||
ARG BASHIO_VERSION=0.3.2 | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
bash \ | ||
jq \ | ||
tzdata \ | ||
curl \ | ||
ca-certificates \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
\ | ||
&& mkdir -p /tmp/bashio \ | ||
&& curl -L -s https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz | tar -xzf - --strip 1 -C /tmp/bashio \ | ||
&& mv /tmp/bashio/lib /usr/lib/bashio \ | ||
&& ln -s /usr/lib/bashio/bashio /usr/bin/bashio \ | ||
&& rm -rf /tmp/bashio |
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,27 @@ | ||
ARG BUILD_VERSION | ||
FROM arm32v7/debian:${BUILD_VERSION}-slim | ||
|
||
# QEMU for crossbuilds | ||
COPY qemu-arm-static /usr/bin/qemu-arm-static | ||
|
||
# Default ENV | ||
ENV LANG C.UTF-8 | ||
|
||
# Set shell | ||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
# Base system | ||
ARG BASHIO_VERSION=0.3.2 | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
bash \ | ||
jq \ | ||
tzdata \ | ||
curl \ | ||
ca-certificates \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
\ | ||
&& mkdir -p /tmp/bashio \ | ||
&& curl -L -s https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz | tar -xzf - --strip 1 -C /tmp/bashio \ | ||
&& mv /tmp/bashio/lib /usr/lib/bashio \ | ||
&& ln -s /usr/lib/bashio/bashio /usr/bin/bashio \ | ||
&& rm -rf /tmp/bashio |
Binary file not shown.
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,24 @@ | ||
ARG BUILD_VERSION | ||
FROM i386/debian:${BUILD_VERSION}-slim | ||
|
||
# Default ENV | ||
ENV LANG C.UTF-8 | ||
|
||
# Set shell | ||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
# Base system | ||
ARG BASHIO_VERSION=0.3.2 | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
bash \ | ||
jq \ | ||
tzdata \ | ||
curl \ | ||
ca-certificates \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
\ | ||
&& mkdir -p /tmp/bashio \ | ||
&& curl -L -s https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz | tar -xzf - --strip 1 -C /tmp/bashio \ | ||
&& mv /tmp/bashio/lib /usr/lib/bashio \ | ||
&& ln -s /usr/lib/bashio/bashio /usr/bin/bashio \ | ||
&& rm -rf /tmp/bashio |