Skip to content

Commit 3fd87f1

Browse files
committed
run live tests on develop only if target is develop branch
1 parent 664682b commit 3fd87f1

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/checks.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,3 +368,39 @@ jobs:
368368
uses: ./.github/actions/live-tests-shared
369369
with:
370370
mina-branch-name: compatible
371+
372+
develop:
373+
needs: [Prepare]
374+
timeout-minutes: 45
375+
runs-on: ubuntu-latest
376+
if: github.event.pull_request.base.ref == 'develop'
377+
services:
378+
mina-local-network:
379+
image: o1labs/mina-local-network:develop-latest-lightnet
380+
env:
381+
NETWORK_TYPE: 'single-node'
382+
PROOF_LEVEL: 'none'
383+
ports:
384+
- 3085:3085
385+
- 5432:5432
386+
- 8080:8080
387+
- 8181:8181
388+
- 8282:8282
389+
volumes:
390+
- /tmp:/root/logs
391+
steps:
392+
- name: Checkout repository
393+
uses: actions/checkout@v4
394+
with:
395+
repository: ${{ inputs.target_repo || github.repository }}
396+
ref: ${{ inputs.target_ref || github.ref }}
397+
- name: build
398+
uses: ./.github/actions/build
399+
with:
400+
repository: ${{ inputs.target_repo || github.repository }}
401+
ref: ${{ inputs.target_ref || github.ref }}
402+
proof_systems_commit: ${{ inputs.proof_systems_commit }}
403+
- name: Use shared steps for live testing jobs
404+
uses: ./.github/actions/live-tests-shared
405+
with:
406+
mina-branch-name: develop

0 commit comments

Comments
 (0)