forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request envoyproxy#90 from istio/merge-from-wasm
Merge from envoyproxy/envoy-wasm:master
- Loading branch information
Showing
2,974 changed files
with
988,489 additions
and
41,687 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
jobs: | ||
- job: bazel | ||
strategy: | ||
matrix: | ||
release: | ||
CI_TARGET: 'bazel.release' | ||
tsan: | ||
CI_TARGET: 'bazel.tsan' | ||
gcc: | ||
CI_TARGET: 'bazel.gcc' | ||
compile_time_options: | ||
CI_TARGET: 'bazel.compile_time_options' | ||
dependsOn: [] # this removes the implicit dependency on previous stage and causes this to run in parallel. | ||
timeoutInMinutes: 360 | ||
pool: | ||
vmImage: 'Ubuntu 16.04' | ||
steps: | ||
- bash: | | ||
echo "disk space at beginning of build:" | ||
df -h | ||
displayName: "Check disk space at beginning" | ||
- bash: | | ||
sudo mkdir -p /etc/docker | ||
echo '{ | ||
"ipv6": true, | ||
"fixed-cidr-v6": "2001:db8:1::/64" | ||
}' | sudo tee /etc/docker/daemon.json | ||
sudo service docker restart | ||
displayName: "Enable IPv6" | ||
- script: ci/run_envoy_docker.sh 'ci/do_ci.sh $(CI_TARGET)' | ||
workingDirectory: $(Build.SourcesDirectory) | ||
env: | ||
ENVOY_DOCKER_BUILD_DIR: $(Build.StagingDirectory) | ||
ENVOY_RBE: "true" | ||
BAZEL_BUILD_EXTRA_OPTIONS: "--config=remote-ci --config=remote --jobs=100 --curses=no" | ||
BAZEL_REMOTE_CACHE: grpcs://remotebuildexecution.googleapis.com | ||
BAZEL_REMOTE_INSTANCE: projects/envoy-ci/instances/default_instance | ||
GCP_SERVICE_ACCOUNT_KEY: $(GcpServiceAccountKey) | ||
displayName: "Run CI script" | ||
|
||
- bash: | | ||
echo "disk space at end of build:" | ||
df -h | ||
displayName: "Check disk space at end" | ||
condition: always() | ||
- task: PublishBuildArtifacts@1 | ||
inputs: | ||
pathtoPublish: "$(Build.StagingDirectory)/envoy" | ||
artifactName: $(CI_TARGET) | ||
condition: always() |
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,26 @@ | ||
# Azure Pipelines | ||
trigger: | ||
- master | ||
|
||
jobs: | ||
- job: macOS | ||
timeoutInMinutes: 360 | ||
pool: | ||
vmImage: 'macos-latest' | ||
|
||
steps: | ||
- script: ./ci/mac_ci_setup.sh | ||
displayName: 'Install dependencies' | ||
|
||
- script: ./ci/mac_ci_steps.sh | ||
displayName: 'Run Mac CI' | ||
env: | ||
BAZEL_REMOTE_CACHE: grpcs://remotebuildexecution.googleapis.com | ||
BAZEL_REMOTE_INSTANCE: projects/envoy-ci/instances/default_instance | ||
GCP_SERVICE_ACCOUNT_KEY: $(GcpServiceAccountKey) | ||
|
||
- task: PublishTestResults@2 | ||
inputs: | ||
testResultsFiles: '**/bazel-testlogs/**/test.xml' | ||
testRunTitle: 'macOS' | ||
condition: always() |
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,11 @@ | ||
--- | ||
tasks: | ||
release: | ||
platform: ubuntu1804 | ||
build_targets: | ||
- "//source/exe:envoy-static" | ||
test_targets: | ||
- "//test/..." | ||
test_flags: | ||
# Workaround for https://github.com/envoyproxy/envoy/issues/7647 | ||
- "--deleted_packages=//test/extensions/tracers/dynamic_ot" |
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 @@ | ||
examples/grpc-bridge/script |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.28.1 |
Oops, something went wrong.