-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
1 parent
f162f0f
commit 1dfd9fa
Showing
5 changed files
with
65 additions
and
6 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 |
---|---|---|
|
@@ -8,6 +8,7 @@ xcode/ | |
cmake-build-debug/ | ||
.cquery_cache/ | ||
.cxx/ | ||
.cache/ | ||
|
||
# Dependencies | ||
node_modules | ||
|
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,14 @@ | ||
image: | ||
file: gitpod.Dockerfile | ||
|
||
tasks: | ||
- name: Welcome message | ||
init: echo "Please run ./bootstrap.sh" | ||
|
||
vscode: | ||
extensions: | ||
- llvm-vs-code-extensions.vscode-clangd | ||
- ms-vscode.cmake-tools | ||
- coenraads.bracket-pair-colorizer-2 | ||
- notskm.clang-tidy | ||
- zxh404.vscode-proto3 |
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,42 @@ | ||
FROM ubuntu:18.04 | ||
|
||
# Install some basics | ||
RUN apt-get update \ | ||
&& apt-get install -y \ | ||
wget \ | ||
curl \ | ||
git \ | ||
vim \ | ||
unzip \ | ||
xz-utils \ | ||
software-properties-common \ | ||
&& apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
# Add latest cmake/boost | ||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc | apt-key add - \ | ||
&& apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic main' \ | ||
&& apt-add-repository -y ppa:mhier/libboost-latest | ||
|
||
# Install required packages for dev | ||
RUN apt-get update \ | ||
&& apt-get install -y \ | ||
build-essential \ | ||
libtool autoconf pkg-config \ | ||
ninja-build \ | ||
ruby-full \ | ||
clang-10 \ | ||
llvm-10 \ | ||
libc++-dev libc++abi-dev \ | ||
cmake \ | ||
libboost1.74-dev \ | ||
ccache \ | ||
&& apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
ENV CC=/usr/bin/clang-10 | ||
ENV CXX=/usr/bin/clang++-10 | ||
|
||
RUN git clone https://github.com/trustwallet/wallet-core.git | ||
WORKDIR /wallet-core | ||
|
||
CMD ["/bin/bash"] |