File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,6 @@ environment:
88 - BUILD_TARGET : DotnetCliTests
99 - BUILD_TARGET : NuGet
1010
11- matrix :
12- allow_failures :
13- - BUILD_TARGET : DotnetCliTests
14-
1511build_script :
1612 - ps : dotnet --info
1713 - cmd : build.cmd %BUILD_TARGET%
Original file line number Diff line number Diff line change @@ -231,8 +231,11 @@ Target "DotnetCliCodeGen" (fun _ ->
231231 let open2 = @" --open Microsoft.FSharp.Compiler"
232232 let open3 = @" --open Microsoft.FSharp.Compiler"
233233
234+ // restore tools
234235 let workDir = @" src/fsharp/FSharp.Compiler.Service.netcore/"
236+ Shell.Exec( " dotnet" , " restore -v Minimal" , workDir) |> assertExitCodeZero
235237
238+ // run tools
236239 Shell.Exec( " dotnet" , " fssrgen ../FSComp.txt ./FSComp.fs ./FSComp.resx" , workDir) |> assertExitCodeZero
237240 Shell.Exec( " dotnet" , " fssrgen ../fsi/FSIstrings.txt ./FSIstrings.fs ./FSIstrings.resx" , workDir) |> assertExitCodeZero
238241 Shell.Exec( fsLex, @" ../lex.fsl --unicode" + lexArgs + " -o lex.fs" , workDir) |> assertExitCodeZero
You can’t perform that action at this time.
0 commit comments