This is the mail archive of the cygwin-apps-cvs mailing list for the cygwin-apps project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[setup - the official Cygwin setup program] branch master, updated. release_2.886-2-g56bc3f0




https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/setup.git;h=56bc3f0163f4d8c54198603493a00b613b664364

commit 56bc3f0163f4d8c54198603493a00b613b664364
Author: Jon Turney <jon.turney@dronecode.org.uk>
Date:   Thu Feb 1 13:20:42 2018 +0000

    Add .appyveyor.yml


Diff:
---
 .appveyor.yml |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/.appveyor.yml b/.appveyor.yml
new file mode 100644
index 0000000..b007e05
--- /dev/null
+++ b/.appveyor.yml
@@ -0,0 +1,29 @@
+version: '{build}'
+environment:
+  CYGWIN_ROOT: C:\cygwin
+  CYGWIN_MIRROR: http://cygwin.mirror.constant.com
+  CYGWIN_CACHE: C:\cache
+  matrix:
+  - HOST: i686-w64-mingw32
+  - HOST: x86_64-w64-mingw32
+install:
+- cmd: |-
+    if "%HOST%"=="i686-w64-mingw32" set PKGARCH="mingw64-i686"
+    if "%HOST%"=="x86_64-w64-mingw32" set PKGARCH="mingw64-x86_64"
+    if NOT DEFINED PKGARCH exit 1
+    set SETUP=setup-x86.exe
+    echo Updating Cygwin and installing build prerequisites
+    %CYGWIN_ROOT%\%SETUP% -qnNdO -R "%CYGWIN_ROOT%" -s "%CYGWIN_MIRROR%" -l "%CYGWIN_CACHE%" -g -P "autoconf,automake,bison,flex,libtool,make,%PKGARCH%-headers,%PKGARCH%-gcc-g++,%PKGARCH%-libgcrypt,%PKGARCH%-libsolv,%PKGARCH%-bzip2,%PKGARCH%-xz,%PKGARCH%-zlib,pkg-config,upx"
+cache: C:\cache
+build_script:
+- cmd: |-
+    echo Bootstrap running...
+    %CYGWIN_ROOT%/bin/bash -lc "cd $APPVEYOR_BUILD_FOLDER; ./bootstrap.sh --host=%HOST%"
+    echo Make running...
+    %CYGWIN_ROOT%/bin/bash -lc "cd $APPVEYOR_BUILD_FOLDER; make"
+    echo Strip/UPX running...
+    %CYGWIN_ROOT%/bin/bash -lc "cd $APPVEYOR_BUILD_FOLDER; make strip upx"
+test: off
+deploy: off
+artifacts:
+- path: setup.exe


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]