From e17fd068f174dc319a08995eda922e993e4bd1bf Mon Sep 17 00:00:00 2001 From: David Gillies Date: Tue, 9 Jul 2019 23:21:51 -0700 Subject: [PATCH 1/3] use bash, fix path --- appveyor.yml | 50 +++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 39 insertions(+), 11 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 4bdb8cc..6943e6e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,13 +1,39 @@ -install: - - set PATH=C:\cygwin\bin;C:\cygwin64\bin;%PATH% - - '%CYG_ROOT%\setup-%CYG_ARCH%.exe -qnNdO -R %CYG_ROOT% -s http://cygwin.mirror.constant.com -l %CYG_ROOT%/var/cache/setup -P aclocal -P autoconf -P automake -P bison -P libgmp-devel -P gcc-core -P gcc-g++ -P mingw-runtime -P mingw-binutils -P mingw-gcc-core -P mingw-gcc-g++ -P mingw-pthreads -P mingw-w32api -P libtool -P make -P gettext-devel -P gettext -P intltool -P libiconv -P pkg-config -P git -P wget -P curl' - +--- environment: matrix: - CYG_ARCH: x86_64 CYG_ROOT: C:/cygwin64 -build: off +build: 'off' + +install: + - set PATH=C:\cygwin64\bin;%PATH% + - '%CYG_ROOT%\setup-%CYG_ARCH%.exe -qnNdO -R %CYG_ROOT% + -l %CYG_ROOT%/var/cache/setup + -P autoconf + -P automake + -P bison + -P curl + -P gcc-core + -P gcc-g++ + -P gettext + -P gettext-devel + -P git + -P intltool + -P libgmp-devel + -P libiconv + -P libncurses-devel + -P libreadline-devel + -P libtool + -P make + -P mingw-binutils + -P mingw-gcc-core + -P mingw-gcc-g++ + -P mingw-pthreads + -P mingw-runtime + -P mingw-w32api + -P pkg-config + -P wget' before_test: - gcc -v @@ -16,9 +42,11 @@ before_test: test_script: # https://help.appveyor.com/discussions/problems/5170-progresspreference-not-works-always-shown-preparing-modules-for-first-use-in-stderr - ps: $ProgressPreference = "SilentlyContinue" - # - aclocal - # - autoconf - # - ./bootstrap - # - ./configure - # - make - # - make check + - bash -lc " + cd $APPVEYOR_BUILD_FOLDER ; + echo '==> Running aclocal' ; aclocal && + echo '==> Running autoconf' ; autoconf && + echo '==> Running ./bootstrap' ; ./bootstrap && + echo '==> Running ./configure' ; ./configure && + echo '==> Running make ' ; make && + echo '==> Running make check' ; make check" From f789ca02668eeb91f593da2f8bfc97b5811277e0 Mon Sep 17 00:00:00 2001 From: David Gillies Date: Wed, 10 Jul 2019 08:50:11 -0700 Subject: [PATCH 2/3] re-org a little --- appveyor.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 6943e6e..75fc53a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,8 +4,6 @@ environment: - CYG_ARCH: x86_64 CYG_ROOT: C:/cygwin64 -build: 'off' - install: - set PATH=C:\cygwin64\bin;%PATH% - '%CYG_ROOT%\setup-%CYG_ARCH%.exe -qnNdO -R %CYG_ROOT% @@ -35,11 +33,11 @@ install: -P pkg-config -P wget' -before_test: +before_build: - gcc -v - g++ -v -test_script: +build_script: # https://help.appveyor.com/discussions/problems/5170-progresspreference-not-works-always-shown-preparing-modules-for-first-use-in-stderr - ps: $ProgressPreference = "SilentlyContinue" - bash -lc " @@ -48,5 +46,11 @@ test_script: echo '==> Running autoconf' ; autoconf && echo '==> Running ./bootstrap' ; ./bootstrap && echo '==> Running ./configure' ; ./configure && - echo '==> Running make ' ; make && - echo '==> Running make check' ; make check" + echo '==> Running make' ; make" + +test_script: + # https://help.appveyor.com/discussions/problems/5170-progresspreference-not-works-always-shown-preparing-modules-for-first-use-in-stderr + - ps: $ProgressPreference = "SilentlyContinue" + - bash -lc " + cd $APPVEYOR_BUILD_FOLDER ; + echo '==> Running make check' ; make check" From 9c97f2eb4bb52efc9521b1e69d5afac9159e6c01 Mon Sep 17 00:00:00 2001 From: Ian Katz Date: Wed, 10 Jul 2019 14:41:03 -0400 Subject: [PATCH 3/3] Hide appveyor.yml file --- appveyor.yml => .appveyor.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename appveyor.yml => .appveyor.yml (100%) diff --git a/appveyor.yml b/.appveyor.yml similarity index 100% rename from appveyor.yml rename to .appveyor.yml