Unverified Commit e488df2f authored by Stan Kladko's avatar Stan Kladko Committed by GitHub

Merge pull request #233 from skalenetwork/task/SKALE-3576-intel-submission

Task/skale 3576 intel submission
parents 845535ee 06d24eb0
...@@ -38,6 +38,16 @@ jobs: ...@@ -38,6 +38,16 @@ jobs:
bash ./scripts/publish_image.sh sgxwallet bash ./scripts/publish_image.sh sgxwallet
env: env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- name: Create Release
if: contains(github.ref, 'develop') || contains(github.ref, 'beta') || contains(github.ref, 'master') || contains(github.ref, 'stable')
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.VERSION }}
release_name: ${{ env.VERSION }}
draft: false
prerelease: true
...@@ -41,16 +41,6 @@ jobs: ...@@ -41,16 +41,6 @@ jobs:
bash ./scripts/publish_image.sh sgxwallet_sim bash ./scripts/publish_image.sh sgxwallet_sim
env: env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- name: Create Release
if: contains(github.ref, 'develop') || contains(github.ref, 'beta') || contains(github.ref, 'master') || contains(github.ref, 'stable')
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.VERSION }}
release_name: ${{ env.VERSION }}
draft: false
prerelease: true
...@@ -115,7 +115,7 @@ void SGXWalletServer::printDB() { ...@@ -115,7 +115,7 @@ void SGXWalletServer::printDB() {
#ifdef SGX_HW_SIM #ifdef SGX_HW_SIM
#define NUM_THREADS 16 #define NUM_THREADS 16
#else #else
#define NUM_THREADS 64 #define NUM_THREADS 200
#endif #endif
......
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
<ISVSVN>2</ISVSVN> <ISVSVN>2</ISVSVN>
<StackMaxSize>0x200000</StackMaxSize> <StackMaxSize>0x200000</StackMaxSize>
<HeapMaxSize>0x200000</HeapMaxSize> <HeapMaxSize>0x200000</HeapMaxSize>
<TCSNum>16</TCSNum> <TCSNum>256</TCSNum>
<TCSMaxNum>16</TCSMaxNum> <TCSMaxNum>256</TCSMaxNum>
<TCSMinPool>16</TCSMinPool> <TCSMinPool>256</TCSMinPool>
<TCSPolicy>0</TCSPolicy> <TCSPolicy>0</TCSPolicy>
<!-- Recommend changing 'DisableDebug' to 1 to make the enclave undebuggable for enclave release --> <!-- Recommend changing 'DisableDebug' to 1 to make the enclave undebuggable for enclave release -->
<DisableDebug>0</DisableDebug> <DisableDebug>0</DisableDebug>
......
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
<ISVSVN>2</ISVSVN> <ISVSVN>2</ISVSVN>
<StackMaxSize>0x1000000</StackMaxSize> <StackMaxSize>0x1000000</StackMaxSize>
<HeapMaxSize>0x100000000</HeapMaxSize> <HeapMaxSize>0x100000000</HeapMaxSize>
<TCSNum>128</TCSNum> <TCSNum>256</TCSNum>
<TCSMaxNum>128</TCSMaxNum> <TCSMaxNum>256</TCSMaxNum>
<TCSMinPool>128</TCSMinPool> <TCSMinPool>256</TCSMinPool>
<TCSPolicy>0</TCSPolicy> <TCSPolicy>0</TCSPolicy>
<!-- Recommend changing 'DisableDebug' to 1 to make the enclave undebuggable for enclave release --> <!-- Recommend changing 'DisableDebug' to 1 to make the enclave undebuggable for enclave release -->
<DisableDebug>1</DisableDebug> <DisableDebug>1</DisableDebug>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment