forked from InfiniTimeOrg/InfiniTime
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Little configuration to give https://gitpod.io users an environment with the SDKs pre-installed
- Loading branch information
Joe Eaves
authored and
Joe Eaves
committed
Jan 5, 2021
1 parent
5cdd3f6
commit 0880d53
Showing
2 changed files
with
56 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
image: | ||
file: docker/.gitpod.Dockerfile | ||
github: | ||
prebuilds: | ||
# enable for the master/default branch (defaults to true) | ||
master: true | ||
# enable for all branches in this repo (defaults to false) | ||
branches: false | ||
# enable for pull requests coming from this repo (defaults to true) | ||
pullRequests: false | ||
# enable for pull requests coming from forks (defaults to false) | ||
pullRequestsFromForks: false | ||
# add a "Review in Gitpod" button as a comment to pull requests (defaults to true) | ||
addComment: true | ||
# add a "Review in Gitpod" button to pull requests (defaults to false) | ||
addBadge: false | ||
# add a label once the prebuild is ready to pull requests (defaults to false) | ||
addLabel: false #prebuilt-in-gitpod |
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,38 @@ | ||
FROM gitpod/workspace-full | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update -qq \ | ||
&& apt-get install -y \ | ||
# x86_64 / generic packages | ||
bash \ | ||
build-essential \ | ||
cmake \ | ||
git \ | ||
make \ | ||
python3 \ | ||
python3-pip \ | ||
tar \ | ||
unzip \ | ||
wget \ | ||
# aarch64 packages | ||
libffi-dev \ | ||
libssl-dev \ | ||
python3-dev \ | ||
&& rm -rf /var/cache/apt/* /var/lib/apt/lists/*; | ||
|
||
# Needs to be installed as root | ||
RUN pip3 install adafruit-nrfutil | ||
|
||
RUN sudo chown -R gitpod /opt | ||
|
||
COPY docker/build.sh /opt/ | ||
# Lets get each in a separate docker layer for better downloads | ||
# GCC | ||
RUN bash -c "source /opt/build.sh; GetGcc;" | ||
# NrfSdk | ||
RUN bash -c "source /opt/build.sh; GetNrfSdk;" | ||
# McuBoot | ||
RUN bash -c "source /opt/build.sh; GetMcuBoot;" | ||
|
||
# Link the default checkout workspace in to the default $SOURCES_DIR | ||
RUN sudo ln -s /workspace/Pinetime /sources |