Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sgxwallet
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董子豪
sgxwallet
Commits
928437b0
Unverified
Commit
928437b0
authored
Dec 18, 2019
by
Sergiy Lavrynenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SKALE-1850 build improvements
parent
03acf9e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
Dockerfile
docker/Dockerfile
+1
-1
build.py
scripts/build.py
+2
-2
No files found.
docker/Dockerfile
View file @
928437b0
...
...
@@ -26,7 +26,7 @@ RUN git clone -b sgx_2.5 --depth 1 https://github.com/intel/linux-sgx && \
###RUN git clone --recurse-submodules https://76b7983ebf14269178b99eff5b2be4b4b56fe7a5:@github.com/skalenetwork/sgxwallet.git
RUN
git clone
--recurse-submodules
--single-branch
--branch
feature/SKALE-1850-remove-extra-dependencies-from-SGX https://76b7983ebf14269178b99eff5b2be4b4b56fe7a5:@github.com/skalenetwork/sgxwallet.git
WORKDIR
sgxwallet
RUN
cd
sgx-software-enable
&&
make
&&
./sgx_enable
#
RUN cd sgx-software-enable && make && ./sgx_enable
RUN
cd
scripts
;
./build.py
### RUN autoreconf -vif
### RUN automake
...
...
scripts/build.py
View file @
928437b0
...
...
@@ -122,8 +122,8 @@ os.chdir(SSL_SOURCE_DIR)
assert
subprocess
.
call
([
"wget"
,
"https://www.openssl.org/source/openssl-1.1.1b.tar.gz"
])
==
0
print
"===>>> Making SSL project"
os
.
chdir
(
SSL_MAKE_DIR
)
assert
subprocess
.
call
([
"make"
,
"SGX_SDK="
+
SGX_SDK_DIR_SSL
,
"all"
,
"test"
])
==
0
#
assert subprocess.call(["make", "SGX_SDK=" + SGX_SDK_DIR_SSL, "all" ]) == 0
#
assert subprocess.call(["make", "SGX_SDK=" + SGX_SDK_DIR_SSL, "all", "test"]) == 0
assert
subprocess
.
call
([
"make"
,
"SGX_SDK="
+
SGX_SDK_DIR_SSL
,
"all"
])
==
0
os
.
chdir
(
topDir
)
print
(
"Build successfull."
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment