blob: 445e021a436555cdb72d6af60a025a9539fff76b [file] [log] [blame]
Ilya Shipitsin8aad9462020-01-23 02:33:38 +05001# build status appears on https://github.com/haproxy/haproxy/actions
2
3name: windows-latest
4
5on: [push]
6
7jobs:
8 cygwin:
9
10 runs-on: windows-latest
11
12 steps:
13 - uses: actions/checkout@v1
14 - name: install prerequisites
15 run: choco install bash make libssl-devel cygwin-devel gcc-core libgcc1 binutils lua-devel libpcre-devel zlib-devel --source cygwin
16 - name: fake step
17 run: C:\\tools\\cygwin\\bin\\bash -lc 'pwd'
18 - name: build
Ilya Shipitsin6328b732020-02-15 18:58:22 +050019 run: C:\\tools\\cygwin\\bin\\bash -lc 'cd $OLDPWD && make TARGET=cygwin ERR=1 USE_ZLIB=1 USE_PCRE=1 USE_PCRE_JIT=1 USE_LUA=1 USE_OPENSSL=1 USE_THREAD=1 && ./haproxy -vv'
Ilya Shipitsin8aad9462020-01-23 02:33:38 +050020