disable the MacOS tests in jenkins
They've never really been enabled but they: 1. Are causing the tests to fail for various reasons (e.g., out of space). 2. Take time. License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
Steven Allen committed
Jun 14, 2018 at 09:38 UTC
fcf74d4cb7ea202136604aef1d9304204e0661c0
1 file changed
+35
-35
ci/Jenkinsfile
+35
-35
@@ -154,41 +154,41 @@ ansiColor('xterm') { withEnv(['TERM=xterm-color']) {
154
}
155
}
156
},
157
- macOS: {
158
- setupStep('macos') { run ->
159
- timeout(time: gotest_timeout, unit: 'MINUTES') {
160
- run 'go get -v github.com/jstemmer/go-junit-report'
161
- run "make gx-deps"
162
-
163
- try {
164
- run test + ' -tags="nofuse" 2>&1 | tee output'
165
- run 'cat output | go-junit-report > junit-report-macos.xml'
166
- } catch (err) {
167
- throw err
168
- } finally {
169
- /* IGNORE TEST FAILS */
170
- /* junit 'junit-report-*.xml' */
171
- }
172
- }
173
- }
174
- },
175
- macSharness: {
176
- setupStep('macos') { run ->
177
- timeout(time: sharness_timeout, unit: 'MINUTES') {
178
- run 'go get -v github.com/jstemmer/go-junit-report'
179
- run "make gx-deps"
180
-
181
- try {
182
- run "make -j12 test/sharness/test-results/sharness.xml CONTINUE_ON_S_FAILURE=1 TEST_NO_FUSE=1"
183
- } catch (err) {
184
- throw err
185
- } finally {
186
- /* IGNORE TEST FAILS */
187
- /* junit allowEmptyResults: true, testResults: 'test/sharness/test-results/sharness.xml' */
188
- }
189
- }
190
- }
191
- },
157
+ //macOS: {
158
+ // setupStep('macos') { run ->
159
+ // timeout(time: gotest_timeout, unit: 'MINUTES') {
160
+ // run 'go get -v github.com/jstemmer/go-junit-report'
161
+ // run "make gx-deps"
162
+
163
+ // try {
164
+ // run test + ' -tags="nofuse" 2>&1 | tee output'
165
+ // run 'cat output | go-junit-report > junit-report-macos.xml'
166
+ // } catch (err) {
167
+ // throw err
168
+ // } finally {
169
+ // /* IGNORE TEST FAILS */
170
+ // /* junit 'junit-report-*.xml' */
171
+ // }
172
+ // }
173
+ // }
174
+ //},
175
+ //macSharness: {
176
+ // setupStep('macos') { run ->
177
+ // timeout(time: sharness_timeout, unit: 'MINUTES') {
178
+ // run 'go get -v github.com/jstemmer/go-junit-report'
179
+ // run "make gx-deps"
180
+
181
+ // try {
182
+ // run "make -j12 test/sharness/test-results/sharness.xml CONTINUE_ON_S_FAILURE=1 TEST_NO_FUSE=1"
183
+ // } catch (err) {
184
+ // throw err
185
+ // } finally {
186
+ // /* IGNORE TEST FAILS */
187
+ // /* junit allowEmptyResults: true, testResults: 'test/sharness/test-results/sharness.xml' */
188
+ // }
189
+ // }
190
+ // }
191
+ //},
192
)
193
}
194
}}