From 4e8d21d849dc4c562d02c4aa22683296cbd314f7 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Sat, 24 Oct 2020 19:31:09 -0400 Subject: Build Windows releases with openssl; automate external libraries External libraries for Windows are now built automatically in the qpdf/external-libs repository and include openssl in addition to zlib and jpeg. Use these, and update the Windows build to build with the openssl crypto provider by default. We leave the native crypto provider enabled in case there is a problem with openssl and also to continue to exercise that code. --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to '.github') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ed963ef1..3f86ef9e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -35,6 +35,11 @@ jobs: with: name: distfiles path: distfiles.zip + - name: 'Upload external libs' + uses: actions/upload-artifact@v1 + with: + name: external-libs + path: external-libs-dist Linux: runs-on: ubuntu-latest steps: @@ -64,6 +69,11 @@ jobs: uses: actions/download-artifact@v2 with: name: distfiles + - name: 'Download external libs' + uses: actions/download-artifact@v2 + with: + name: external-libs + path: . - name: 'Build, test, generate binary distributions' shell: cmd run: build-scripts/build-windows.bat ${{ matrix.wordsize }} ${{ matrix.tool }} @@ -81,6 +91,11 @@ jobs: uses: actions/download-artifact@v2 with: name: distfiles + - name: 'Download external libs' + uses: actions/download-artifact@v2 + with: + name: external-libs + path: . - name: 'Mac build and test' run: build-scripts/build-mac AppImage: -- cgit v1.2.3-54-g00ecf