Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
0cd355a
listener: clean up accept filter before creating connection (#8922)
lambdai Nov 8, 2019
44f8c36
docs: 1.12.1 release note
lizan Nov 8, 2019
062c995
bazel: replace tclap mirror. (#9072)
ipuustin Nov 19, 2019
6f25c3e
ci: exclude config fuzz from CI (#66)
lizan Dec 3, 2019
abfe8e3
ci: exclude server fuzz from CI (#78)
yanavlasov Dec 10, 2019
22c9fbd
http: fix heap overflow vulnerability (CVE-2019-18801). (#70)
yanavlasov Dec 10, 2019
cc371ae
route config: handle no host/path headers (CVE-2019-18838). (#71)
yanavlasov Dec 10, 2019
6a6ac1c
Stricter validation of HTTP/1 headers (CVE-2019-18802). (#72)
yanavlasov Dec 10, 2019
ecf8e03
Add documentation for deploying envoy as level 2 proxy (#74)
yanavlasov Dec 10, 2019
55af249
docs: 1.12.2 release note (#73)
yanavlasov Dec 10, 2019
8f2515a
docs: fix version history
mattklein123 Dec 10, 2019
2a284c1
release: kick off 1.12.3 stable release. (#10026)
PiotrSikora Feb 12, 2020
2cf8166
string matcher: add ignore_case to StringMatcher (#9868) (#10017)
yangminzhu Feb 12, 2020
92d0094
[release/v1.12] matcher: add PathMatcher and use in routing, jwt and …
yangminzhu Feb 13, 2020
095c3d3
bazel: build tests only in sanitizer runs (#8878) (#10201)
lizan Feb 28, 2020
836d6ba
docker: push SHA tag for release branch too (#10214) (#10218)
lizan Mar 1, 2020
b49b560
sds: fix combined validation context validation bypassing (#115)
Feb 7, 2020
92bd1e9
buffer: draining any zero byte fragments (#9837) (#109) (#123)
Feb 14, 2020
b2fc186
network: draining the buffer on close (#9870) (#110) (#124)
Feb 14, 2020
1864a98
tls_inspector: enable TLSv1.3. (#119)
PiotrSikora Feb 15, 2020
75d7cb8
http: adding response flood protection (#113) (#125)
Feb 19, 2020
e6a2d20
buffer: release empty slices after commit (#116) (#128)
yangminzhu Feb 20, 2020
c4e97cf
buffer: Force copy when appending small slices to OwnedImpl buffer to…
yangminzhu Feb 20, 2020
6912f57
ci: disable fuzzit
lizan Mar 2, 2020
b5144d4
docs: fix version history and release 1.12.3
lizan Feb 27, 2020
c59f45f
backport: various build fixes for 1.12.x (#11053)
lizan May 11, 2020
ba43a85
ci: fix mac bazelisk (#11444) (#11482)
PiotrSikora Jun 6, 2020
732e494
Push vX.Y-latest when a release is cut (#11405) (#11461)
PiotrSikora Jun 6, 2020
7c3231e
http: processing of headers with underscores in names (#10611) (#11464)
PiotrSikora Jun 6, 2020
c152887
build: bump nghttp2 to 1.41.0. (#11412) (#11468)
PiotrSikora Jun 6, 2020
1580db3
docs: 1.12.4 release notes. (#11489)
PiotrSikora Jun 8, 2020
5139aef
docs: kick-off 1.12.5 release. (#11508)
PiotrSikora Jun 9, 2020
9258bfe
Refactor resource manager (#11182)
lizan Jun 13, 2020
cb77cc8
listener: Add configurable accepted connection limits (#153)
lizan Jun 13, 2020
03a59e2
overload: Runtime configurable global connection limits (#147)
Jun 14, 2020
1b048ff
[http1] Include request URL in request header size computation, and r…
jplevyak Jun 14, 2020
eee7315
[buffer] Add on-drain hook to buffer API and use it to avoid fragment…
jplevyak Jun 14, 2020
15bff64
http/2: add stats and stream flush timeout (#139)
Jun 16, 2020
fc7bc67
Refactor resource manager (#11182) (#35)
jplevyak Jun 16, 2020
43825a6
Merge remote-tracking branch 'envoyproxy/release/v1.12' into test
jplevyak Jun 17, 2020
e77ab3b
http2: fix stream flush timeout race with protocol error (#181)
PiotrSikora Jun 17, 2020
a5363aa
Merge pull request #39 from istio-private/merge-v1.12
jplevyak Jun 17, 2020
6c46280
Merge remote-tracking branch 'envoyproxy-private/release/v1.12' into …
jplevyak Jun 17, 2020
dece5fd
Merge pull request #38 from istio-private/backport-1.4
jplevyak Jun 17, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions .azure-pipelines/bazel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
parameters:
- name: ciTarget
displayName: "CI target"
type: string
default: bazel.release

steps:
- task: CacheBeta@1
inputs:
key: '"${{ parameters.ciTarget }}" | ./WORKSPACE | **/*.bzl'
path: $(Build.StagingDirectory)/repository_cache

- bash: .azure-pipelines/cleanup.sh
displayName: "Removing tools from agent"

- 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 ${{ parameters.ciTarget }}'
workingDirectory: $(Build.SourcesDirectory)
env:
ENVOY_DOCKER_BUILD_DIR: $(Build.StagingDirectory)
ENVOY_RBE: "true"
# Use https://docs.bazel.build/versions/master/command-line-reference.html#flag--experimental_repository_cache_hardlinks
# to save disk space.
BAZEL_BUILD_EXTRA_OPTIONS: "--config=remote-ci --config=remote --jobs=$(RbeJobs) --curses=no --experimental_repository_cache_hardlinks"
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: PublishTestResults@2
inputs:
testResultsFiles: "**/bazel-out/**/testlogs/**/test.xml"
testRunTitle: "${{ parameters.ciTarget }}"
searchFolder: $(Build.StagingDirectory)/tmp
condition: always()

- task: PublishBuildArtifacts@1
inputs:
pathtoPublish: "$(Build.StagingDirectory)/envoy"
artifactName: ${{ parameters.ciTarget }}
condition: always()
9 changes: 9 additions & 0 deletions .azure-pipelines/cleanup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

set -e

# Temporary script to remove tools from Azure pipelines agent to create more disk space room.
sudo apt-get -y update
sudo apt-get purge -y 'ghc-*' 'zulu-*-azure-jdk' 'libllvm*' 'mysql-*' 'dotnet-*' 'cpp-*'

dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -rn
175 changes: 0 additions & 175 deletions .azure-pipelines/linux.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .azure-pipelines/macos.yml

This file was deleted.

123 changes: 123 additions & 0 deletions .azure-pipelines/pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
trigger:
branches:
include:
- "master"
- "release/v*"
tags:
include:
- "v*"

# PR build config is manually overridden in Azure pipelines UI with different secrets
pr: none

jobs:
- job: format
dependsOn: [] # this removes the implicit dependency on previous stage and causes this to run in parallel.
pool:
vmImage: "ubuntu-16.04"
steps:
- task: CacheBeta@1
inputs:
key: "format | ./WORKSPACE | **/*.bzl"
path: $(Build.StagingDirectory)/repository_cache

- script: ci/run_envoy_docker.sh 'ci/check_and_fix_format.sh'
workingDirectory: $(Build.SourcesDirectory)
env:
ENVOY_DOCKER_BUILD_DIR: $(Build.StagingDirectory)
BAZEL_REMOTE_CACHE: grpcs://remotebuildexecution.googleapis.com
BAZEL_REMOTE_INSTANCE: projects/envoy-ci/instances/default_instance
GCP_SERVICE_ACCOUNT_KEY: $(GcpServiceAccountKey)
displayName: "Run check format scripts"

- task: PublishBuildArtifacts@1
inputs:
pathtoPublish: "$(Build.StagingDirectory)/fix_format.diff"
artifactName: format
condition: failed()

- job: release
displayName: "Linux-x64 release"
dependsOn: ["format"]
# For master builds, continue even if format fails
condition: and(not(canceled()), or(succeeded(), ne(variables['Build.Reason'], 'PullRequest')))
pool:
vmImage: "ubuntu-16.04"
steps:
- template: bazel.yml
parameters:
ciTarget: bazel.release

- job: bazel
displayName: "Linux-x64"
dependsOn: ["release"]
# For master builds, continue even if format fails
condition: and(not(canceled()), or(succeeded(), ne(variables['Build.Reason'], 'PullRequest')))
strategy:
maxParallel: 3
matrix:
gcc:
CI_TARGET: "bazel.gcc"
clang_tidy:
CI_TARGET: "bazel.clang_tidy"
asan:
CI_TARGET: "bazel.asan"
tsan:
CI_TARGET: "bazel.tsan"
compile_time_options:
CI_TARGET: "bazel.compile_time_options"
timeoutInMinutes: 360
pool:
vmImage: "Ubuntu 16.04"
steps:
- template: bazel.yml
parameters:
ciTarget: $(CI_TARGET)

- job: docker
displayName: "Linux-x64 docker"
dependsOn: ["release"]
condition: and(succeeded(), eq(variables['PostSubmit'], 'true'), ne(variables['Build.Reason'], 'PullRequest'))
pool:
vmImage: "ubuntu-16.04"
steps:
- task: DownloadBuildArtifacts@0
inputs:
buildType: current
artifactName: "bazel.release"
itemPattern: "bazel.release/envoy_binary.tar.gz"
downloadType: single
targetPath: $(Build.StagingDirectory)

- bash: |
set -e
tar zxf $(Build.StagingDirectory)/bazel.release/envoy_binary.tar.gz
ci/docker_ci.sh
workingDirectory: $(Build.SourcesDirectory)
env:
AZP_BRANCH: $(Build.SourceBranch)
AZP_SHA1: $(Build.SourceVersion)
DOCKERHUB_USERNAME: $(DockerUsername)
DOCKERHUB_PASSWORD: $(DockerPassword)

- job: macOS
dependsOn: ["format"]
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()
Loading