Commit b606768 1 parent a5058f5 commit b606768 Copy full SHA for b606768
File tree 3 files changed +11
-1
lines changed
3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change
1
+ language : csharp
2
+ mono : none
3
+ dotnet : 2.1
4
+ script :
5
+ - dotnet --list-runtimes
6
+ - dotnet --list-sdks
7
+ - make all
8
+ - make check
9
+ - make run-samples
Original file line number Diff line number Diff line change 6
6
7
7
run-samples :
8
8
rm -rf ~ /.nuget.orig && mv ~ /.nuget ~ /.nuget.orig && mkdir -p ~ /.nuget
9
- cd Samples && ../turkey || true
9
+ cd Samples && test -f ../turkey && (bash ../turkey || true)
10
10
rm -rf ~ /.nuget && mv ~ /.nuget.orig ~ /.nuget
11
11
12
12
publish :
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ public List<Version> RuntimeVersions
26
26
string output = p . StandardOutput . ReadToEnd ( ) ;
27
27
var list = output
28
28
. Split ( "\n " , StringSplitOptions . RemoveEmptyEntries )
29
+ . Where ( line => line . StartsWith ( "Microsoft.NETCore.App" ) )
29
30
. Select ( line => line . Split ( " " ) [ 1 ] )
30
31
. Select ( versionString => Version . Parse ( versionString ) )
31
32
. OrderBy ( x => x )
You can’t perform that action at this time.
0 commit comments