Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4a7575b

Browse files
authored
No longer sudo as no outer-latest jobs are being executed in CI (dotnet#4384)
* fix casing of FCS outputs* no longer sudo, no outer-latest in CI* no longer sudo, no outer-latest in CI
1 parent7fe3465 commit4a7575b

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

‎fcs/cibuild.sh‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22

33
# note: expects to run from top directory
4-
./mono/latest-mono-stable.sh&& \
4+
#./mono/latest-mono-stable.sh
55
./build.sh NuGet

‎mono/cibuild.sh‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# note: expects to run from top directory
4-
./mono/latest-mono-stable.sh&& \
5-
make Configuration=$@&& \
6-
sudo make install Configuration=$@&& \
7-
./mono/test-mono.sh
4+
#./mono/latest-mono-stable.sh
5+
make Configuration=$@
6+
#sudo make install Configuration=$@
7+
#./mono/test-mono.sh

‎netci.groovy‎

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,14 @@ def static getBuildJobName(def configuration, def os) {
9797
def skipIfNoTestFiles=true
9898
def skipIfNoBuildOutput=false
9999

100-
// "sudo is not enabled by default on most of the VM images. The outerloop images do have this enabled. The image version (usually 'latest') can be set to 'outer-latest' in this case to enable passwordless sudo, which would enable your scenario."
100+
// "sudo is not enabled by default on most of the VM images. The outerloop images do have this enabled.
101+
// The image version (usually 'latest') can be set to 'outer-latest' in this case to enable passwordless
102+
// sudo, which would enable your scenario."
103+
//
101104
// https://github.com/Microsoft/visualfsharp/pull/4372#issuecomment-367850885
102-
def affinity= (configuration=='Release_net40_no_vs'?'latest-or-auto': (os=='Windows_NT'?'latest-dev15-5':'outer-latest'))
105+
//
106+
// However, for now we are still just using 'latest-or-auto'. Unclear if that gives 'sudo' or not.
107+
def affinity= (configuration=='Release_net40_no_vs'?'latest-or-auto': (os=='Windows_NT'?'latest-dev15-5':'latest-or-auto'))
103108
Utilities.setMachineAffinity(newJob, os, affinity)
104109
Utilities.standardJobSetup(newJob, project, isPullRequest,"*/${branch}")
105110

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp