Ilya Shipitsin | 8aad946 | 2020-01-23 02:33:38 +0500 | [diff] [blame] | 1 | # build status appears on https://github.com/haproxy/haproxy/actions |
| 2 | |
| 3 | name: windows-latest |
| 4 | |
| 5 | on: [push] |
| 6 | |
| 7 | jobs: |
| 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 Shipitsin | 6328b73 | 2020-02-15 18:58:22 +0500 | [diff] [blame] | 19 | 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 Shipitsin | 8aad946 | 2020-01-23 02:33:38 +0500 | [diff] [blame] | 20 | |