From 2035f5e5a564a48fe7c5948b12ab3971022b947d Mon Sep 17 00:00:00 2001 From: kichik Date: Thu, 13 Apr 2017 21:00:58 +0000 Subject: [PATCH] drone.io is dead so use travis-ci.org instead git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6847 212acab6-be3b-0410-9dea-997c60f758d6 --- .travis.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..99f83da3 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +language: cpp +dist: xenial +compiler: +- gcc +os: +- linux +before_install: +- sudo apt-get install scons mingw32 mingw32-binutils zlib1g-dev libcppunit-dev +install: +- wget -O /tmp/zlib.zip "https://downloads.sourceforge.net/project/libpng/zlib/1.2.8/zlib128-dll.zip?r=&ts=1403402496&use_mirror=hivelocity" +- mkdir /tmp/zlib +- unzip /tmp/zlib.zip -d /tmp/zlib +script: +- scons ZLIB_W32=/tmp/zlib SKIPUTILS="NSIS Menu" test dist-zip +deploy: + provider: script + script: echo this is where we will deploy to SF + on: + branch: master