From 57e2d3acc1ae1f1710eb68c1bb5dd7a758118d8e Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Thu, 7 Mar 2024 15:14:29 +0100 Subject: [PATCH] ci: run conformance against proxy gateway to car gateway this will allow us to test against the car gateway once we use it for proxying instead of the current solution --- .github/workflows/gateway-conformance.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gateway-conformance.yml b/.github/workflows/gateway-conformance.yml index c9c3eb072..f0e19c5e7 100644 --- a/.github/workflows/gateway-conformance.yml +++ b/.github/workflows/gateway-conformance.yml @@ -33,10 +33,17 @@ jobs: - name: Build car-gateway run: go build -o car-gateway working-directory: boxo/examples/gateway/car + - name: Build proxy-gateway + run: go build -o proxy-gateway + working-directory: boxo/examples/gateway/proxy # 3. Start the car-gateway - name: Start car-gateway - run: boxo/examples/gateway/car/car-gateway -c fixtures/fixtures.car -p 8040 & + run: boxo/examples/gateway/car/car-gateway -c fixtures/fixtures.car -p 8030 & + + # 3. Start the proxy-gateway + - name: Start proxy-gateway + run: boxo/examples/gateway/proxy/proxy-gateway -g http://127.0.0.1:8030 -p 8040 & # 4. Run the gateway-conformance tests - name: Run gateway-conformance tests