File tree Expand file tree Collapse file tree 4 files changed +32
-21
lines changed Expand file tree Collapse file tree 4 files changed +32
-21
lines changed Original file line number Diff line number Diff line change 1+ name : msys2
2+
3+ on :
4+ push :
5+
6+ jobs :
7+ msys2 :
8+ runs-on : windows-2025
9+
10+ defaults :
11+ run :
12+ shell : msys2 {0}
13+ working-directory : unix
14+
15+ steps :
16+ - name : Init MSYS
17+ uses : msys2/setup-msys2@v2
18+ with :
19+ msystem : MSYS
20+ install : git base-devel msys2-devel zlib-devel
21+ update : true
22+ - name : Checkout
23+ uses : actions/checkout@v4
24+ - name : Build
25+ run : |
26+ ./configure -C --prefix=/usr --enable-64bit || { cat config.log; cat config.cache; exit 1; }
27+ make
28+ - name : Run Tests (ignoring test io-53.4.1 which hangs)
29+ run : make test
30+ env :
31+ ERROR_ON_FAILURES : 1
32+ TESTFLAGS : -skip io-53.4.1
Original file line number Diff line number Diff line change @@ -812,9 +812,6 @@ ${LIB_FILE}: ${STUB_LIB_FILE} ${OBJS} ${TCL_ZIP_FILE}
812812 fi
813813
814814${STUB_LIB_FILE} : ${STUB_LIB_OBJS}
815- @if [ " x${LIB_FILE} " = " xcygtcl${MAJOR_VERSION} .${MINOR_VERSION} .dll" ] ; then \
816- ( cd ${TOP_DIR} /win; ${MAKE} winextensions ); \
817- fi
818815 rm -f $@
819816 @MAKE_STUB_LIB@
820817
Original file line number Diff line number Diff line change @@ -5893,15 +5893,6 @@ printf "%s\n" "$ac_cv_cygwin" >&6; }
58935893 as_fn_error $? " ${CC} is not a cygwin compiler." " $LINENO " 5
58945894 fi
58955895 do64bit_ok=yes
5896- if test " x${SHARED_BUILD} " = " x1" ; then
5897- echo " running cd ../win; ${CONFIG_SHELL-/ bin/ sh} ./configure $ac_configure_args --enable-64bit --host=x86_64-w64-mingw32"
5898- # The eval makes quoting arguments work.
5899- if cd ../win; eval ${CONFIG_SHELL-/ bin/ sh} ./configure $ac_configure_args --enable-64bit --host=x86_64-w64-mingw32; cd ../unix
5900- then :
5901- else
5902- { echo " configure: error: configure failed for ../win" 1>&2 ; exit 1; }
5903- fi
5904- fi
59055896 ;;
59065897 dgux* )
59075898 SHLIB_CFLAGS=" -K PIC"
Original file line number Diff line number Diff line change @@ -1101,15 +1101,6 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [
11011101 AC_MSG_ERROR ( [ ${CC} is not a cygwin compiler.] )
11021102 fi
11031103 do64bit_ok=yes
1104- if test "x${SHARED_BUILD}" = "x1"; then
1105- echo "running cd ../win; ${CONFIG_SHELL-/bin/sh} ./configure $ac_configure_args --enable-64bit --host=x86_64-w64-mingw32"
1106- # The eval makes quoting arguments work.
1107- if cd ../win; eval ${CONFIG_SHELL-/bin/sh} ./configure $ac_configure_args --enable-64bit --host=x86_64-w64-mingw32; cd ../unix
1108- then :
1109- else
1110- { echo "configure: error: configure failed for ../win" 1>&2; exit 1; }
1111- fi
1112- fi
11131104 ;;
11141105 dgux*)
11151106 SHLIB_CFLAGS="-K PIC"
You can’t perform that action at this time.
0 commit comments