Skip to content

Commit

Permalink
ci: run conformance against proxy gateway to car gateway
Browse files Browse the repository at this point in the history
this will allow us to test against the car gateway once we use it for proxying instead of the current solution
  • Loading branch information
hacdias committed Mar 7, 2024
1 parent 7bb3ea0 commit 57e2d3a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/gateway-conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 57e2d3a

Please sign in to comment.