Let me take this opportunity to ask for a co-maintainer that can help me keep the network package working on Windows. I don&#39;t have easy access to a Windows machine (or even VM) anymore so testing on Windows is hard. What I&#39;d really like is a buildbot that builds the following Jenkins job as a &quot;slave&quot; node:<div>

<br></div><div>    <a href="http://ci.johantibell.com/job/network/">http://ci.johantibell.com/job/network/</a></div><div><br></div><div>config.xml:</div><div><br></div><div><div>&lt;?xml version=&#39;1.0&#39; encoding=&#39;UTF-8&#39;?&gt;</div>

<div>&lt;matrix-project&gt;</div><div>  &lt;actions/&gt;</div><div>  &lt;description&gt;&lt;/description&gt;</div><div>  &lt;keepDependencies&gt;false&lt;/keepDependencies&gt;</div><div>  &lt;properties/&gt;</div><div>  &lt;scm class=&quot;hudson.plugins.git.GitSCM&quot;&gt;</div>

<div>    &lt;configVersion&gt;2&lt;/configVersion&gt;</div><div>    &lt;userRemoteConfigs&gt;</div><div>      &lt;hudson.plugins.git.UserRemoteConfig&gt;</div><div>        &lt;name&gt;origin&lt;/name&gt;</div><div>        &lt;refspec&gt;+refs/heads/*:refs/remotes/origin/*&lt;/refspec&gt;</div>

<div>        &lt;url&gt;<a href="https://github.com/haskell/network.git">https://github.com/haskell/network.git</a>&lt;/url&gt;</div><div>      &lt;/hudson.plugins.git.UserRemoteConfig&gt;</div><div>    &lt;/userRemoteConfigs&gt;</div>

<div>    &lt;branches&gt;</div><div>      &lt;hudson.plugins.git.BranchSpec&gt;</div><div>        &lt;name&gt;stable&lt;/name&gt;</div><div>      &lt;/hudson.plugins.git.BranchSpec&gt;</div><div>    &lt;/branches&gt;</div>

<div>    &lt;recursiveSubmodules&gt;false&lt;/recursiveSubmodules&gt;</div><div>    &lt;doGenerateSubmoduleConfigurations&gt;false&lt;/doGenerateSubmoduleConfigurations&gt;</div><div>    &lt;authorOrCommitter&gt;false&lt;/authorOrCommitter&gt;</div>

<div>    &lt;clean&gt;false&lt;/clean&gt;</div><div>    &lt;wipeOutWorkspace&gt;false&lt;/wipeOutWorkspace&gt;</div><div>    &lt;pruneBranches&gt;false&lt;/pruneBranches&gt;</div><div>    &lt;remotePoll&gt;false&lt;/remotePoll&gt;</div>

<div>    &lt;buildChooser class=&quot;hudson.plugins.git.util.DefaultBuildChooser&quot;/&gt;</div><div>    &lt;gitTool&gt;Default&lt;/gitTool&gt;</div><div>    &lt;browser class=&quot;hudson.plugins.git.browser.GithubWeb&quot;&gt;</div>

<div>      &lt;url&gt;<a href="https://github.com/haskell/network/">https://github.com/haskell/network/</a>&lt;/url&gt;</div><div>    &lt;/browser&gt;</div><div>    &lt;submoduleCfg class=&quot;list&quot;/&gt;</div><div>
    &lt;relativeTargetDir&gt;&lt;/relativeTargetDir&gt;</div>
<div>    &lt;excludedRegions&gt;&lt;/excludedRegions&gt;</div><div>    &lt;excludedUsers&gt;&lt;/excludedUsers&gt;</div><div>    &lt;gitConfigName&gt;&lt;/gitConfigName&gt;</div><div>    &lt;gitConfigEmail&gt;&lt;/gitConfigEmail&gt;</div>

<div>    &lt;skipTag&gt;false&lt;/skipTag&gt;</div><div>    &lt;scmName&gt;&lt;/scmName&gt;</div><div>  &lt;/scm&gt;</div><div>  &lt;canRoam&gt;true&lt;/canRoam&gt;</div><div>  &lt;disabled&gt;false&lt;/disabled&gt;</div>

<div>  &lt;blockBuildWhenDownstreamBuilding&gt;false&lt;/blockBuildWhenDownstreamBuilding&gt;</div><div>  &lt;blockBuildWhenUpstreamBuilding&gt;false&lt;/blockBuildWhenUpstreamBuilding&gt;</div><div>  &lt;triggers class=&quot;vector&quot;&gt;</div>

<div>    &lt;hudson.triggers.SCMTrigger&gt;</div><div>      &lt;spec&gt;*/5 * * * *&lt;/spec&gt;</div><div>    &lt;/hudson.triggers.SCMTrigger&gt;</div><div>  &lt;/triggers&gt;</div><div>  &lt;concurrentBuild&gt;false&lt;/concurrentBuild&gt;</div>

<div>  &lt;axes&gt;</div><div>    &lt;hudson.matrix.TextAxis&gt;</div><div>      &lt;name&gt;compiler&lt;/name&gt;</div><div>      &lt;values&gt;</div><div>        &lt;string&gt;ghc-6.10.4&lt;/string&gt;</div><div>        &lt;string&gt;ghc-6.12.3&lt;/string&gt;</div>

<div>        &lt;string&gt;ghc-7.0.3&lt;/string&gt;</div><div>      &lt;/values&gt;</div><div>    &lt;/hudson.matrix.TextAxis&gt;</div><div>  &lt;/axes&gt;</div><div>  &lt;builders&gt;</div><div>    &lt;hudson.tasks.Shell&gt;</div>

<div>      &lt;command&gt;cabal install -w $compiler --only-dependencies --enable-tests</div><div>cabal clean</div><div>autoreconf</div><div>cabal configure -w $compiler --enable-tests</div><div>cabal build</div><div>cabal test</div>

<div>cabal sdist&lt;/command&gt;</div><div>    &lt;/hudson.tasks.Shell&gt;</div><div>  &lt;/builders&gt;</div><div>  &lt;publishers&gt;</div><div>    &lt;hudson.tasks.Mailer&gt;</div><div>      &lt;recipients&gt;<a href="mailto:johan.tibell@gmail.com">johan.tibell@gmail.com</a>&lt;/recipients&gt;</div>

<div>      &lt;dontNotifyEveryUnstableBuild&gt;false&lt;/dontNotifyEveryUnstableBuild&gt;</div><div>      &lt;sendToIndividuals&gt;false&lt;/sendToIndividuals&gt;</div><div>    &lt;/hudson.tasks.Mailer&gt;</div><div>  &lt;/publishers&gt;</div>

<div>  &lt;buildWrappers/&gt;</div><div>  &lt;runSequentially&gt;false&lt;/runSequentially&gt;</div><div>&lt;/matrix-project&gt;</div></div><div><br></div>