blob: cd4d2467031378a4eac73b8391fbec659dd472b2 [file] [log] [blame]
Ilya Shipitsin3e128fe2020-03-25 00:46:14 +05001
2name: compliance
3
4on:
5 schedule:
6 - cron: "0 0 * * 3"
7
8jobs:
9 h2spec:
10
11 runs-on: ubuntu-latest
12
13 steps:
14 - uses: actions/checkout@v1
15 - name: build haproxy
16 run: |
17 make -j3 CC=gcc ERR=1 TARGET=linux-glibc USE_OPENSSL=1
18 - name: start haproxy
19 run: |
20 ./haproxy -f .github/h2spec.config -D
21 - name: download h2spec
22 run: |
Ilya Shipitsin787c63c2020-10-25 19:36:02 +050023 wget https://github.com/summerwind/h2spec/releases/download/v2.6.0/h2spec_linux_amd64.tar.gz
Ilya Shipitsin3e128fe2020-03-25 00:46:14 +050024 tar xvf h2spec_linux_amd64.tar.gz
25 - name: run h2spec
26 run: |
27 ./h2spec -Svtk -h 127.0.0.1 -p 8443