Skip to content

Nightly E2E tests

Nightly E2E tests #41

#
# We want to fail fast but we don't want platform specific issues to impact other workflows.
# So we extracted the tests into 3 separate jobs, one for each platform.
#
name: Nightly E2E tests (default branch)
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch: {}
jobs:
against-real-network-on-linux:
timeout-minutes: 125
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
# https://github.com/shelljs/shelljs/issues/1133
node: [18, 20]
os: [ubuntu-latest]
services:
mina-local-network:
image: o1labs/mina-local-network:rampup-latest-lightnet
env:
NETWORK_TYPE: 'single-node'
PROOF_LEVEL: 'none'
ports:
- 3085:3085
- 5432:5432
- 8080:8080
- 8181:8181
volumes:
- /tmp:/root/logs
steps:
- name: Wait for Mina network readiness
uses: o1-labs/wait-for-mina-network-action@v1
with:
mina-graphql-port: 8080
max-attempts: 60
polling-interval-ms: 10000
- uses: actions/checkout@v3
- name: Use shared E2E testing steps
uses: ./.github/actions/e2e-shared
with:
node-version: ${{ matrix.node }}
os-type: ${{ matrix.os }}
shell: bash
against-mocked-network-on-macos:
timeout-minutes: 95
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
# https://github.com/shelljs/shelljs/issues/1133
node: [18, 20]
os: [macos-latest]
steps:
- uses: actions/checkout@v3
- name: Use shared E2E testing steps
uses: ./.github/actions/e2e-shared
with:
node-version: ${{ matrix.node }}
os-type: ${{ matrix.os }}
shell: bash
against-mocked-network-on-windows:
timeout-minutes: 95
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
# https://github.com/shelljs/shelljs/issues/1133
node: [18, 20]
os: [windows-latest]
steps:
- uses: actions/checkout@v3
- name: Use shared E2E testing steps
uses: ./.github/actions/e2e-shared
with:
node-version: ${{ matrix.node }}
os-type: ${{ matrix.os }}
shell: powershell