From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2201) id E6693385043D; Sat, 29 Aug 2020 14:42:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E6693385043D Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Jon TURNEY To: cygwin-cvs@sourceware.org, newlib-cvs@sourceware.org Subject: [newlib-cygwin] Cygwin: Remove .drone.yml X-Act-Checkin: newlib-cygwin X-Git-Author: Jon Turney X-Git-Refname: refs/heads/master X-Git-Oldrev: 5b67246301dfe2cce50939273889f59010be27a5 X-Git-Newrev: 1cab6235274c974122cf4f0e7f85e03d332c354e Message-Id: <20200829144223.E6693385043D@sourceware.org> Date: Sat, 29 Aug 2020 14:42:23 +0000 (GMT) X-BeenThere: newlib-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib GIT logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Aug 2020 14:42:24 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=1cab6235274c974122cf4f0e7f85e03d332c354e commit 1cab6235274c974122cf4f0e7f85e03d332c354e Author: Jon Turney Date: Sun Aug 23 20:31:43 2020 +0100 Cygwin: Remove .drone.yml tea-ci.org was a CI service for MSYS2, but is no longer operating. Diff: --- .drone.yml | 58 ---------------------------------------------------------- 1 file changed, 58 deletions(-) diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index ad512a031..000000000 --- a/.drone.yml +++ /dev/null @@ -1,58 +0,0 @@ -# Build configuration for https://tea-ci.org -# Tea CI is a fork of Drone CI with Cygwin/Msys2 support -# Feel free to share Tea CI to more open source developers -# https://docs.tea-ci.org/usage/overview/ - -debug: true - -build: - stage1: - image: teaci/cygwin$$arch - pull: true - shell: cygwin$$arch - commands: - - uname -a - - id - - C:/cygwin-installer.exe --site http://mirrors.tea-ci.org/cygwin --local-package-dir Z:/tmp/cygwin -W -P gettext-devel,zlib-devel,libiconv,libiconv-devel,mingw64-i686-gcc-g++,mingw64-i686-zlib,mingw64-x86_64-gcc-core,mingw64-x86_64-gcc-g++,mingw64-x86_64-zlib,dejagnu,dblatex,docbook-xml45,docbook-xsl,xmlto -q &> /dev/null - - srcdir=`pwd` - - builddir=/oss/build-stage1 - - installdir=/oss/install-stage1 - - mkdir -p ${builddir} ${installdir} - - cd ${builddir} - - ${srcdir}/configure --prefix=${installdir} -v - - make - - make install - - sha1sum ${installdir}/bin/cygwin1.dll /bin/cygwin1.dll - # FIXME: Is there an easy way to package new Cygwin then install locally using setup_x86{,-64}.exe? - - cp -vf ${installdir}/bin/cygwin1.dll /bin/cygwin1.dll - - test: - image: teaci/cygwin$$arch - pull: true - shell: /bin/bash # Call from Linux native shell, which is a special bonus of Tea CI. - commands: - # In the worst case, new cygwin1.dll might fail to start with exit status 0, which fools the CI as status success. - # The following test does not rely on cygwin exit status, instead we trust Linux grep result. - - cygwin$$arch -c "uname -a" | grep CYGWIN_NT - - cygwin$$arch -c "id" | grep uid - - cygwin$$arch -c "sha1sum --tag /bin/cygwin1.dll" | grep SHA1 - - # Compile Cygwin again using the new cygwin1.dll - stage2: - image: teaci/cygwin$$arch - pull: true - shell: cygwin$$arch - commands: - - srcdir=`pwd` - - builddir=/oss/build-stage2 - - installdir=/oss/install-stage2 - - mkdir -p ${builddir} ${installdir} - - cd ${builddir} - - ${srcdir}/configure --prefix=${installdir} -v - - make - - make install - -matrix: - arch: - - 64 - - 32