X-Git-Url: http://www.wagner.pp.ru/gitweb/?a=blobdiff_plain;f=.github%2Fworkflows%2Fwindows.yml;fp=.github%2Fworkflows%2Fwindows.yml;h=78b724c2c133a17a488f1ef25be8ca9a8e396c99;hb=ea9884745777b84bc59bc211e5ac2b65d7aa254a;hp=0000000000000000000000000000000000000000;hpb=d74c05b73cc98e9ce66e57d86ae03c023d2b3c53;p=openssl-gost%2Fengine.git diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml new file mode 100644 index 0000000..78b724c --- /dev/null +++ b/.github/workflows/windows.yml @@ -0,0 +1,48 @@ +name: CI (windows) +on: [push, pull_request] + +jobs: + msvc-openssl: + runs-on: windows-latest + outputs: + openssl-head: ${{ steps.openssl.outputs.head }} + steps: + - uses: actions/checkout@v2 + with: + repository: openssl/openssl + fetch-depth: 0 + - run: echo "::set-output name=head::$(git describe --always --long)" + id: openssl + - uses: actions/cache@v2 + id: cache + with: + path: _dest + key: ${{ runner.os }}-openssl-${{ steps.openssl.outputs.head }} + - uses: ilammy/msvc-dev-cmd@v1 + - name: Build OpenSSL + if: steps.cache.outputs.cache-hit != 'true' + run: | + perl Configure no-makedepend no-tests no-asm + perl configdata.pm --dump + nmake /S build_libs build_programs + nmake /S install_sw DESTDIR=_dest + + msvc-engine: + needs: msvc-openssl + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - uses: actions/cache@v2 + with: + path: _dest + key: ${{ runner.os }}-openssl-${{ needs.msvc-openssl.outputs.openssl-head }} + - run: cmake -DOPENSSL_ROOT_DIR="_dest\Program Files\OpenSSL" -DOPENSSL_ENGINES_DIR=bin . + - run: cmake --build . + - name: Run tests + run: | + $env:PATH = "$env:PATH;$pwd\_dest\Program Files\OpenSSL\bin" + $env:OPENSSL_ENGINES = "$pwd\bin\Debug" + $env:OPENSSL_MODULES = "$pwd\bin\Debug" + ctest -C Debug --output-on-failure