From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17230 invoked by alias); 14 Aug 2017 22:47:18 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 22825 Received: (qmail 14037 invoked by uid 1010); 14 Aug 2017 22:47:18 -0000 X-Qmail-Scanner-Diagnostics: from forward3h.cmail.yandex.net by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(87.250.230.18):SA:0(-2.6/5.0):. Processed in 2.961101 secs); 14 Aug 2017 22:47:18 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RCVD_IN_DNSWL_LOW,SPF_PASS,T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.1 X-Envelope-From: kp-pav@yandex.ru X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1502750468; bh=/flgcBEY9AkEALHZuju4y3SNlNoEf20x50qq8YU/pAI=; h=From:To:In-Reply-To:References:Subject:Message-Id:Date; b=oRTBHOchIK9jS2jIPRX35uzmNFqoomqrgBEj/J1xsxverAztE2dciz4XZzFhZkT6d DvTY21BSVsMf1bLEHD2NJijtMpd+ZtEeGmerhlludll18FtVWt4WQr2cDFJN5ZY9PQ QbRzsJlXv+LqfkFRTu3931xK03We0tDDl0+LRhFo= Authentication-Results: mxback3o.mail.yandex.net; dkim=pass header.i=@yandex.ru From: "Nikolay Aleksandrovich Pavlov (ZyX)" To: Julien Nicoulaud , Mailing-list zsh-users In-Reply-To: References: Subject: Re: Zsh docker images MIME-Version: 1.0 Message-Id: <368651502750468@web46j.yandex.ru> X-Mailer: Yamail [ http://yandex.ru ] 5.0 Date: Tue, 15 Aug 2017 01:41:08 +0300 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=utf-8 15.08.2017, 01:12, "Julien Nicoulaud" : > Hi all, > > I just wanted to advertise a small project that could be useful to other > zsh users: https://github.com/zsh-users/zsh-docker > > This builds images of many versions of zsh (including a daily build of > zsh's master branch) and deploys them to Docker Hub ( > https://hub.docker.com/u/zshusers). > > So you can do, for instance: > >     $ docker run -it zshusers/zsh-5.3.1 > > -> will launch an interactive session of zsh 5.3.1 > > We use it to automatically test zsh-syntax-highlighting on all supported > versions of zsh. What you could just as well do without docker which would make travis run faster due to not needed `sudo: required` and ability to setup travis cache. For testing something locally your docker images make more sense because they are easier to use then compiling that big amount of zsh versions. Also why you have no builds for PRs and why you don’t merge those 24 jobs into something like 7 (4.3*, 5.0*, 5.1*, 5.2*, 5.3*, 5.4*, master)? Less then twenty seconds to run tests in a single job, lots of time to initialize VMs and there is nothing which may prevent you from consequently running two docker commands in one job, or using two zsh versions via other means. > > Cheers, > Julien