forked from envoyproxy/envoy-filter-example
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The envoy-filter-example CI did not actually verify that a runnable binary was built since it only ran a test. A change in Envoy resulted in the binary build from the envoy-filter-example becoming broken. The submodule hash is updated as part of this commit. The WORKSPACE file is modified to include references to the api dependencies added since the last submodule hash update. After this is merged a commit to Envoy will update the filter-example hash for CI to include this commit, and modify do_ci.sh to run this new test.
- Loading branch information
Showing
4 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule envoy
updated
from 895868 to 252c36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
# | ||
|
||
set -e | ||
|
||
# Just test that the binary was produced and can be executed. | ||
# envoy --help will give a success return code if working. | ||
envoy --help | ||
|
||
echo "PASS" |