Skip to content

Commit

Permalink
Merge branch 'dev' into p-1280-migrate-omniaccounts-related-trustedca…
Browse files Browse the repository at this point in the history
…lls-to-omni-executor
  • Loading branch information
silva-fj authored Feb 10, 2025
2 parents 9a8408c + 625cb3c commit 7aebe3e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/create-release-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,13 @@ jobs:
docker tag litentry/litentry-parachain:${{ env.RELEASE_TAG }} litentry/litentry-parachain:latest
docker images
- name: Enable corepack and pnpm
run: corepack enable && corepack enable pnpm
- name: Use Latest Corepack
run: |
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
npm install -g corepack@latest
echo "After : corepack version => $(corepack --version)"
corepack enable && corepack enable pnpm
pnpm --version
- name: Run ts tests for ${{ matrix.chain }}
timeout-minutes: 30
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/verify-correctness-of-vc-content.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,13 @@ jobs:
- run: docker images --all

- name: Enable corepack and pnpm
run: corepack enable && corepack enable pnpm
- name: Use Latest Corepack
run: |
echo "Before: corepack version => $(corepack --version || echo 'not installed')"
npm install -g corepack@latest
echo "After : corepack version => $(corepack --version)"
corepack enable && corepack enable pnpm
pnpm --version
- name: Launch parachain network
run: |
Expand Down
2 changes: 1 addition & 1 deletion tee-worker/omni-executor/omni-executor.manifest.template
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fs.mounts = [
{ path = "/storage_db", uri = "file:storage_db" },
]

sgx.debug = true
sgx.debug = {{ 'true' if env.get('SGX_DEBUG', '0') == '1' else 'false' }}
sgx.edmm_enable = {{ 'true' if env.get('EDMM', '0') == '1' else 'false' }}


Expand Down

0 comments on commit 7aebe3e

Please sign in to comment.