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
| 'use strict'; | |
| const json = require('./stats.json'); | |
| const table = require('markdown-table'); | |
| function getHumanNodeVersion(abi) { | |
| switch (parseInt(abi, 10)) { | |
| case 11: return 'Node 0.10.x'; | |
| case 14: return 'Node 0.12.x'; | |
| case 42: return 'io.js 1.x'; |
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
| CFLAGS=-ggdb3 | |
| PATH=/opt/mono/bin/:$PATH | |
| ./autogen.sh #--enable-werror | |
| make -w | |
| (cd mcs && make -w test) # build tests separately, so we can catch compilation errors that would be ignored in the next step | |
| make -k -w check CI=1 V=1 TEST_HARNESS_VERBOSE=1 || true | |
| rm -r /tmp/jenkins-temp-aspnet* |