Skip to content

Commit

Permalink
ci: Test Envoy sync in PRs
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <ryan@synca.io>
  • Loading branch information
phlax committed Oct 31, 2023
1 parent 5e6d96c commit 4e3bfea
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,26 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: build and test
run: make docker_tests
run: make docker_tests

sync:
runs-on: ubuntu-latest
steps:
# Checkout the repo
- name: 'Checkout Repository'
uses: actions/checkout@v4
with:
path: go-control-plane

# Checkout the Envoy repo
- name: 'Checkout Repository'
uses: actions/checkout@v4
with:
repository: envoyproxy/envoy
ref: main
path: upstream

- run: ci/sync_envoy.sh
env:
ENVOY_SRC_DIR: ../envoy
working-directory: go-control-plane

0 comments on commit 4e3bfea

Please sign in to comment.