-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #168 from skalenetwork/develop
Merge develop into stable for Intel submission
- Loading branch information
Showing
514 changed files
with
5,644 additions
and
12,759 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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
exclude_paths: | ||
- 'scripts/**' | ||
- '.github/**' | ||
- 'third_party/SCIPR/**' |
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,32 @@ | ||
name: Build, test and push release SGX container | ||
on: [push] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | ||
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | ||
steps: | ||
- name: Login to docker | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.DOCKER_SECRET }} | ||
run: docker login -u skalelabs -p ${GITHUB_TOKEN} | ||
- uses: actions/checkout@v1 | ||
- name: submodule update | ||
run: git submodule update --init --recursive | ||
- name: build | ||
run: python3 scripts/docker_build.py Dockerfile sgxwallet ${GITHUB_SHA} | ||
- name: deploy docker image | ||
if: contains(github.ref, 'develop') || contains(github.ref, 'beta') || contains(github.ref, 'master') || contains(github.ref, 'stable') | ||
run : | | ||
export BRANCH=${GITHUB_REF##*/} | ||
echo "Branch $BRANCH" | ||
export VERSION=$(cat VERSION) | ||
echo "Version $VERSION" | ||
export VERSION=$(bash ./scripts/calculate_version.sh $BRANCH $VERSION) | ||
echo "::set-env name=VERSION::$VERSION" | ||
echo "Version $VERSION" | ||
export RELEASE=true | ||
echo "::set-env name=RELEASE::$RELEASE" | ||
bash ./scripts/build_image.sh DockerfileRelease sgxwallet_release | ||
bash ./scripts/publish_image.sh sgxwallet_release |
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,49 +1,52 @@ | ||
# Created by .ignore support plugin (hsz.mobi) | ||
.idea/ | ||
sgx-gmp/ | ||
gmp-build | ||
tgmp-build | ||
install-sh | ||
config.log | ||
config.status | ||
Makefile.in | ||
Makefile | ||
secure_enclave_u.h | ||
secure_enclave_u.c | ||
secure_enclave.edl | ||
am--include-marker | ||
*.o | ||
aclocal.m4 | ||
missing | ||
compile | ||
depcomp | ||
ltmain.sh | ||
secure_enclave.signed.so | ||
sgxgmpmath | ||
sgxgmppi | ||
.deps | ||
CMakeCache.txt | ||
cmake_install.cmake | ||
sgxd.cbp | ||
sgx-gmp | ||
sgx-sdk-build | ||
secure_enclave/Makefile | ||
secure_enclave/secure_enclave.signed.so | ||
secure_enclave/secure_enclave.so | ||
secure_enclave/secure_enclave_t.c | ||
secure_enclave/secure_enclave_t.h | ||
sgxd | ||
cert/SGXServerCertificate* | ||
autom4te.cache | ||
sgxwallet | ||
testw | ||
configure | ||
jsonrpc/zlib | ||
jsonrpc/argtable2 | ||
jsonrpc/jsoncpp | ||
jsonrpc/libjson-rpc-cpp | ||
jsonrpc/curl-from-git.tar.gz | ||
jsonrpc/curl | ||
jsonrpc/libmicrohttpd | ||
secure_enclave/.deps | ||
test-driver | ||
/.idea/ | ||
/cmake-build-debug/ | ||
/build/ | ||
/sgx_data/ | ||
/jsonrpc/ | ||
/gmp-build/ | ||
/tgmp-build/ | ||
/install-sh | ||
/config.log | ||
/config.status | ||
/Makefile.in | ||
/Makefile | ||
/secure_enclave_u.h | ||
/secure_enclave_u.c | ||
/secure_enclave.edl | ||
/am--include-marker | ||
/*.o | ||
/*.m4 | ||
/missing | ||
/compile | ||
/depcomp | ||
/ltmain.sh | ||
/secure_enclave.signed.so | ||
/sgxgmpmath | ||
/sgxgmppi | ||
/.deps | ||
/CMakeCache.txt | ||
/cmake_install.cmake | ||
/sgxd.cbp | ||
/sgx-gmp/ | ||
/sgx-sdk-build/ | ||
/secure_enclave/Makefile | ||
/secure_enclave/secure_enclave.signed.so | ||
/secure_enclave/secure_enclave.so | ||
/secure_enclave/secure_enclave_t.c | ||
/secure_enclave/secure_enclave_t.h | ||
/sgxd | ||
/cert/SGXServerCertificate* | ||
/autom4te.cache | ||
/sgxwallet | ||
/testw | ||
/configure | ||
/secure_enclave/.deps | ||
/test-driver | ||
/intel-sgx-ssl/ | ||
/m4 | ||
/.testw.py.swp | ||
/cert_util | ||
/secure_enclave/*.o | ||
/*.user | ||
/cert/*.csr | ||
/cert/*.crt |
Oops, something went wrong.