File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7777 - name : virtual
7878 os : azure-linux
7979 image : mcr.microsoft.com/azurelinux/base/core:3.0
80- test_filter : " benchmark|unit|protocolstest| lts"
80+ test_filter : " benchmark|unit|lts"
8181 - name : snp
8282 os : azure-linux
8383 image : mcr.microsoft.com/azurelinux/base/core:3.0
@@ -106,6 +106,7 @@ jobs:
106106 run : |
107107 set -ex
108108 ./scripts/install-azure-linux-deps.sh
109+ ./scripts/install-azure-linux-extended.sh
109110 # For packaging and release tests
110111 tdnf -y install rpm-build
111112
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ # Copyright (c) Microsoft Corporation. All rights reserved.
3+ # Licensed under the Apache 2.0 License.
4+
5+ set -ex
6+
7+ H2SPEC_VERSION=" v2.6.0"
8+
9+ # protocoltest dependency
10+ tdnf install -y bind-utils
11+
12+ # protocoltest dependency
13+ curl -L --output h2spec_linux_amd64.tar.gz https://github.com/summerwind/h2spec/releases/download/$H2SPEC_VERSION /h2spec_linux_amd64.tar.gz
14+ tar -xvf h2spec_linux_amd64.tar.gz
15+ mkdir /opt/h2spec
16+ mv h2spec /opt/h2spec/h2spec
You can’t perform that action at this time.
0 commit comments