forked from buildroot/buildroot
-
Notifications
You must be signed in to change notification settings - Fork 70
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
59 additions
and
8 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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
FROM ubuntu:22.04 | ||
|
||
RUN apt-get install build-essential git subversion cvs unzip whois ncurses-dev bc mercurial pmount gcc-multilib g++-multilib libgmp3-dev libmpc-dev liblz4-tool | ||
COPY buildroot /buildroot | ||
WORKDIR /buildroot | ||
#RUN make raspberrypi3_wpe_ml_defconfig && make | ||
RUN apt-get update | ||
RUN apt-get install build-essential git subversion cvs unzip whois ncurses-dev bc mercurial pmount gcc-multilib g++-multilib libgmp3-dev libmpc-dev liblz4-tool | ||
COPY build.sh /usr/local/bin | ||
ENTRYPOINT ["./build.sh"] | ||
#RUN make raspberrypi3_wpe_ml_defconfig && make |
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,4 @@ | ||
#!/usr/bin/env bash | ||
|
||
make raspberrypi3_wpe_defconfig && make | ||
~ |
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,30 @@ | ||
resources: | ||
- name: Divya-Buildroot | ||
type: git | ||
icon: github | ||
source: | ||
uri: https://github.com/WebPlatformForEmbedded/buildroot/ | ||
password: ((github-enterprise.access-token)) | ||
|
||
- name: buildroot-docker-image | ||
type: registry-image-resource | ||
check_every: 72h | ||
source: | ||
repository: atlas.comcast.net/tpx-metrological-embedded | ||
username: ((service-account.username)) | ||
password: ((service-account.password)) | ||
|
||
|
||
jobs: | ||
|
||
- name: Divya-Buildroot | ||
plan: | ||
- get: Divya-Buildroot | ||
- task: prepare-build | ||
file: Divya-Buildroot/ci/prepare-build.yml | ||
- task: build | ||
file: Divya-Buildroot/ci/build.yml | ||
- put: buildroot-docker-image | ||
params: | ||
image: image/image.tar | ||
|