Skip to content

feat(protocol): enable shasta fork #390

feat(protocol): enable shasta fork

feat(protocol): enable shasta fork #390

Workflow file for this run

name: CI - SGX Docker
on:
workflow_call:
push:
branches: ["main"]
paths:
- "docker/**"
- "!docs/**"
pull_request:
paths:
- "docker/**"
- "!docs/**"
jobs:
build-test-sgx-with-docker:
if: ${{ github.event.pull_request.draft == false }}
name: Build and test sgx with Docker
runs-on: [taiko-runner]
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup and build sgx docker
run: |
cd docker
cp ./.env.sample ./.env
docker compose --profile prod-redis build raiko --no-cache
shell: bash