From: Milan Broz Date: Wed, 1 Apr 2026 12:24:44 +0000 (+0200) Subject: ci: Fix CYGWIN build X-Git-Tag: openssl-4.0.0~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aabb55a4e1ac7a3a65b3b3b94b00de6498c191b4;p=thirdparty%2Fopenssl.git ci: Fix CYGWIN build The build should run with -j4 option, but this option was never propagated to run command (lost in Powershell). Just set bash as shell here. This speedups CYGWIN CI build significantly. Signed-off-by: Milan Broz Reviewed-by: Dmitry Misharov Reviewed-by: Neil Horman Reviewed-by: Norbert Pocs Reviewed-by: Tomas Mraz MergeDate: Fri Apr 3 15:45:11 2026 (Merged from https://github.com/openssl/openssl/pull/30661) (cherry picked from commit aab7adf85a66227ff5d0261999b8aca18953b5ad) --- diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 8068c56080e..3ae12ae13f8 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -220,7 +220,11 @@ jobs: # - name: Clone repo # run: bash -c "pwd && git clone --branch ${{ github.ref_name }} --depth 1 https://github.com/${{ github.repository }}.git" - name: Full build - run: bash -c "gcc --version && ./config ${{ matrix.platform.config }} && make $MAKE_PARAMS" + shell: bash + run: | + gcc --version + ./config ${{ matrix.platform.config }} + make $MAKE_PARAMS # Disable testing for now. TBD: Need local cygwin installation to debug . # - name: Run openssl tests # run: bash -c "cd openssl && make V=1 test"