@@ -614,7 +614,7 @@ jobs:
614
614
timeout-minutes : 55
615
615
defaults :
616
616
run :
617
- shell : bash
617
+ shell : C:\msys64\usr\bin\ bash.exe {0}
618
618
env :
619
619
VCPKG_BINARY_SOURCES : ' clear;x-gha,readwrite'
620
620
VCPKG_DISABLE_METRICS : ' 1'
@@ -737,6 +737,7 @@ jobs:
737
737
- name : ' cmake configure'
738
738
timeout-minutes : 5
739
739
run : |
740
+ PATH="/c/msys64/usr/bin:$PATH"
740
741
cmake -B bld ${options} \
741
742
"-DCMAKE_TOOLCHAIN_FILE=$VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake" \
742
743
"-DVCPKG_INSTALLED_DIR=$VCPKG_INSTALLATION_ROOT/installed" \
@@ -762,7 +763,9 @@ jobs:
762
763
763
764
- name : ' cmake build'
764
765
timeout-minutes : 5
765
- run : cmake --build bld --config '${{ matrix.type }}' --parallel 5
766
+ run : |
767
+ PATH="/c/msys64/usr/bin:$PATH"
768
+ cmake --build bld --config '${{ matrix.type }}' --parallel 5
766
769
767
770
- name : ' curl version'
768
771
timeout-minutes : 1
@@ -776,7 +779,9 @@ jobs:
776
779
- name : ' cmake build tests'
777
780
if : ${{ matrix.tflags != 'skipall' }}
778
781
timeout-minutes : 10
779
- run : cmake --build bld --config '${{ matrix.type }}' --parallel 5 --target testdeps
782
+ run : |
783
+ PATH="/c/msys64/usr/bin:$PATH"
784
+ cmake --build bld --config '${{ matrix.type }}' --parallel 5 --target testdeps
780
785
781
786
- name : ' install test prereqs'
782
787
if : ${{ matrix.tflags != 'skipall' && matrix.tflags != 'skiprun' }}
@@ -792,18 +797,20 @@ jobs:
792
797
793
798
- name : ' cmake run tests'
794
799
if : ${{ matrix.tflags != 'skipall' && matrix.tflags != 'skiprun' }}
795
- timeout-minutes : 12
800
+ timeout-minutes : 10
796
801
run : |
797
802
export TFLAGS='-j8 ~WebSockets ~SCP ~612 ${{ matrix.tflags }}'
798
- TFLAGS+=' ~987' # 'SMTPS with redundant explicit SSL request'
799
803
if [[ '${{ matrix.install }}' = *'libssh2[core,zlib]'* ]]; then
800
804
TFLAGS+=' ~SFTP'
801
805
elif [[ '${{ matrix.install }}' = *'libssh '* ]]; then
802
806
TFLAGS+=' ~614' # 'SFTP pre-quote chmod' SFTP, pre-quote, directory
803
807
fi
804
808
PATH="$PWD/bld/lib:$PATH:/c/Program Files (x86)/stunnel/bin:/c/Program Files/OpenSSH-Win64"
809
+ PATH="/c/msys64/usr/bin:$PATH"
805
810
cmake --build bld --config '${{ matrix.type }}' --target test-ci
806
811
807
812
- name : ' cmake build examples'
808
813
timeout-minutes : 5
809
- run : cmake --build bld --config '${{ matrix.type }}' --parallel 5 --target curl-examples
814
+ run : |
815
+ PATH="/c/msys64/usr/bin:$PATH"
816
+ cmake --build bld --config '${{ matrix.type }}' --parallel 5 --target curl-examples
0 commit comments