This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ubuntu4.buildfarm.gradle.org: | |
---------- | |
base: | |
- common.packages.base | |
- common.packages.java | |
- common.base | |
- salt-minion | |
- common.monitoring | |
- build-vm-linux | |
- common.build-agents |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ubuntu4.buildfarm.gradle.org: | |
---------- | |
git: | |
---------- | |
__env__: | |
base | |
__sls__: | |
common.git | |
pkg: | |
- installed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
configurations.all { resolutionStrategy.cacheDynamicVersionsFor Integer.MAX_VALUE, 'days' } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.frege.java; | |
public class StaticHello { | |
public static String helloJava() { | |
return "hello from java"; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)) | |
} | |
} | |
} | |
} |