feat(raiko): rename pivot to sgxgeth #253
Workflow file for this run
This file contains hidden or 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
| 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 build raiko --no-cache | |
| shell: bash |