From 6d18dbde80e55acbb52dadc9327ab99b1f303635 Mon Sep 17 00:00:00 2001 From: Marcin Rataj Date: Mon, 14 Aug 2023 18:32:43 +0200 Subject: [PATCH] test: gateway-conformance matrix for GRAPH_BACKEND --- .github/workflows/gateway-conformance.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/gateway-conformance.yml b/.github/workflows/gateway-conformance.yml index 586f545..af37ad8 100644 --- a/.github/workflows/gateway-conformance.yml +++ b/.github/workflows/gateway-conformance.yml @@ -9,6 +9,9 @@ on: jobs: gateway-conformance: runs-on: ubuntu-latest + strategy: + matrix: + car-env: ["GRAPH_BACKEND=false", "GRAPH_BACKEND=true"] steps: # 1. Start the Kubo gateway - name: Download Kubo gateway @@ -59,7 +62,10 @@ jobs: - name: Start bifrost-gateway env: PROXY_GATEWAY_URL: http://127.0.0.1:8080 + KUBO_RPC_URL: http://127.0.0.1:5001 GATEWAY_CONFORMANCE_TEST: true + # we export car-env this way to have full key=value present on PR status instead of just true/false without context + run: export ${{ matrix.car-env }} run: ./bifrost-gateway & working-directory: bifrost-gateway