Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions .github/workflows/test-graphql-remote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,23 @@ on:
# Run daily at 00:00 UTC
- cron: '0 0 * * *'

env:
GRAPHQL_ENDPOINT: http://mina-rust-plain-3.gcp.o1test.net/graphql

jobs:
remote-graphql-tests:
name: Test Remote GraphQL Endpoint
name: Test ${{ matrix.node_name }} GraphQL Endpoint
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
include:
- node_name: Rust Node
endpoint: http://mina-rust-plain-3.gcp.o1test.net/graphql
- node_name: Caml Node
endpoint: https://devnet-plain-1.gcp.o1test.net/graphql
- node_name: Mainnet Caml Node
endpoint: https://mainnet-plain-1.gcp.o1test.net/graphql
env:
GRAPHQL_ENDPOINT: ${{ matrix.endpoint }}

steps:
- name: Checkout repository
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- **CI**: add devnet and mainnet Caml nodes to remote GraphQL test suite to
ensure compatibility between Rust and OCaml implementations
([#1542](https://github.com/o1-labs/mina-rust/pull/1542))
- **CI**: add workflow to test GraphQL queries with the OCaml node
([#1465](https://github.com/o1-labs/mina-rust/pull/1465))
- **Website**: add o1Labs infrastructure entry, describing the nodes managed by
Expand Down
Loading