diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-03-24 23:31:46 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-03-28 22:50:24 +0100 |
commit | f6d6fcb6ebdb8079ffa69fb5545714b14ed5fd5c (patch) | |
tree | 7abc057c80c624881b09f924b36d5f41bec200eb | |
parent | ae60cf654a95ac5393fe8dfeeca59f874637af86 (diff) |
Add Windows CI build
-rw-r--r-- | .github/workflows/build.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ece39541..24e1f6b4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -178,3 +178,25 @@ jobs: make make check ldd src/dillo + windows-mbedtls: + needs: ubuntu-latest-html-tests + runs-on: windows-latest + steps: + - run: git config --global core.autocrlf input + - uses: actions/checkout@v4 + with: + fetch-depth: 1 + - uses: cygwin/cygwin-install-action@master + with: + packages: gcc-core gcc-g++ autoconf automake make zlib-devel mbedtls-devel libfltk-devel libiconv-devel libpng-devel libjpeg-devel libgif-devel + - shell: C:\cygwin\bin\bash.exe --login --norc -eo pipefail -o igncr '{0}' + run: | + set -x + cd ${GITHUB_WORKSPACE} + pwd + ls -l + ./autogen.sh + ./configure + make + make check + ls -l src/dillo |