Skip to content

Instantly share code, notes, and snippets.

Total states run: 2
ubuntu4.buildfarm.gradle.org:
----------
ID: git
Function: pkg.installed
Result: True
Comment: Package git is already installed.
Started: 09:03:12.464223
Duration: 691.049 ms
Changes:
[WARNING ] Although 'dmidecode' was found in path, the current user cannot execute it. Grains output might not be accurate.
ubuntu4.buildfarm.gradle.org:
----------
ID: zsh
Function: pkg.installed
Result: True
Comment: Package zsh is already installed.
Started: 09:05:10.379487
Duration: 573.376 ms
Changes:
ubuntu4.buildfarm.gradle.org:
----------
base:
- common.packages.base
- common.packages.java
- common.base
- salt-minion
- common.monitoring
- build-vm-linux
- common.build-agents
ubuntu4.buildfarm.gradle.org:
----------
git:
----------
__env__:
base
__sls__:
common.git
pkg:
- installed
git:
pkg:
- installed
github.com:
ssh_known_hosts:
- present
- hash_hostname: False
- fingerprint: 12:25:ab:a6:66:28:2b:36:63:1b:56:4d:eb:df:a6:48
ase:
# A Linux server that hosts the build server and other dev services. Doesn't run any builds.
# (dev1 config references this)
'roles:build-server':
- match: pillar
- salt-minion
- common.base
- common.limits
- common.network
- common.packages
@breskeby
breskeby / gist:8828472a3096f81b3195
Created November 5, 2015 22:03
disable refresh of dynamicversions in gradle
configurations.all { resolutionStrategy.cacheDynamicVersionsFor Integer.MAX_VALUE, 'days' }
@breskeby
breskeby / java
Created November 29, 2015 23:34
java class letting fregedoc fail
package org.frege.java;
public class StaticHello {
public static String helloJava() {
return "hello from java";
}
}
@breskeby
breskeby / gradle_releases.html
Created January 10, 2016 01:16
gradle release history
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
@breskeby
breskeby / get-help.groovy
Last active November 9, 2016 16:30
buildscan recipe gist for creating topic on gradle forum
buildScan.buildFinished { result ->
if(result.failure){
if(result.failure instanceof org.gradle.internal.exceptions.LocationAwareException){
if(result.failure.reportableCauses.size() >= 1) {
def reportMessage = result.failure.reportableCauses[0].message
buildScan.link("Create Gradle Forum Topic", createForumLink(reportMessage))
}
}
}
}