Skip to content

Commit fc58bc1

Browse files
authored
Merge pull request #1542 from o1-labs/dw/add-caml-node-for-graphql
CI: add Caml nodes to GraphQL endpoint tests
2 parents 0775284 + 40d6b94 commit fc58bc1

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

.github/workflows/test-graphql-remote.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,23 @@ on:
88
# Run daily at 00:00 UTC
99
- cron: '0 0 * * *'
1010

11-
env:
12-
GRAPHQL_ENDPOINT: http://mina-rust-plain-3.gcp.o1test.net/graphql
13-
1411
jobs:
1512
remote-graphql-tests:
16-
name: Test Remote GraphQL Endpoint
13+
name: Test ${{ matrix.node_name }} GraphQL Endpoint
1714
runs-on: ubuntu-latest
1815
timeout-minutes: 10
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
include:
20+
- node_name: Rust Node
21+
endpoint: http://mina-rust-plain-3.gcp.o1test.net/graphql
22+
- node_name: Caml Node
23+
endpoint: https://devnet-plain-1.gcp.o1test.net/graphql
24+
- node_name: Mainnet Caml Node
25+
endpoint: https://mainnet-plain-1.gcp.o1test.net/graphql
26+
env:
27+
GRAPHQL_ENDPOINT: ${{ matrix.endpoint }}
1928

2029
steps:
2130
- name: Checkout repository

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414

1515
### Added
1616

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

0 commit comments

Comments
 (0)