-
Notifications
You must be signed in to change notification settings - Fork 11
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
4 changed files
with
22 additions
and
12 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
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
FROM balenalib/armv7hf-debian:stretch | ||
|
||
COPY . / | ||
COPY . /lauszus-blhost | ||
|
||
RUN [ "cross-build-start" ] | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y apt-utils | ||
RUN apt-get install -y build-essential libudev-dev | ||
|
||
RUN cd validation/blhost/gcc && make clean && make -j$(nproc) | ||
RUN make -j$(nproc) -C /lauszus-blhost/validation/blhost/gcc | ||
|
||
RUN [ "cross-build-end" ] |
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,8 @@ | ||
FROM i386/centos:centos7 | ||
|
||
COPY . /lauszus-blhost | ||
|
||
RUN yum -y update | ||
RUN yum -y install gcc gcc-c++ make libudev-devel | ||
|
||
RUN linux32 --32bit i386 make -j$(nproc) -C /lauszus-blhost/validation/blhost/gcc |
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