Skip to content

ci: Test Envoy sync in PRs #1727

ci: Test Envoy sync in PRs

ci: Test Envoy sync in PRs #1727

Workflow file for this run

name: CI Build and Test
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build and test
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: a65cd8b725c420243751dd1223f4d9e292d8eca6
path: envoy
- run: ci/sync_envoy.sh
env:
ENVOY_SRC_DIR: ../envoy
working-directory: go-control-plane