Skip to content

Commit 0fcb3a3

Browse files
authored
Merge pull request #981 from nojaf/update-readme
Update instructions in README
2 parents ef30cc2 + 13dfc7b commit 0fcb3a3

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ jobs:
3030
global-json-file: ${{ env.FSHARP_DIR }}/global.json
3131
- name: Restore tools
3232
run: dotnet tool restore
33-
33+
- name: Restore FSharp.Compiler.Service.fsproj
34+
run: dotnet restore FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj
3435
- name: Build FCS
3536
run: dotnet build src/Compiler/FSharp.Compiler.Service.fsproj /p:BUILDING_USING_DOTNET=true
3637
working-directory: ${{ env.FSHARP_DIR }}

.github/workflows/pr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
global-json-file: ${{ env.FSHARP_DIR }}/global.json
2626
- name: Restore tools
2727
run: dotnet tool restore
28+
- name: Restore FSharp.Compiler.Service.fsproj
29+
run: dotnet restore FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj
2830

2931
- name: Build FCS
3032
run: dotnet build src/Compiler/FSharp.Compiler.Service.fsproj /p:BUILDING_USING_DOTNET=true

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,21 @@ Eventually the build will just be
2525

2626
For now, we make a fresh build of FSharp.Compiler.Service.
2727

28-
(start in fsharp-conpiler-docs)
29-
dotnet restore fsharp-conpiler-docs
28+
(start in fsharp-compiler-docs)
29+
dotnet restore FSharp.Compiler.Service
30+
dotnet tool restore
3031

31-
(make fsharp-conpiler-docs/fsharp)
32+
(make fsharp-compiler-docs/fsharp)
3233
git clone https://github.com/dotnet/fsharp --depth 1 -b main
3334

34-
(build fsharp-conpiler-docs)
35+
(build fsharp-compiler-docs/fsharp)
3536
pushd fsharp
36-
.\build -noVisualStudio
37+
dotnet build src/Compiler/FSharp.Compiler.Service.fsproj /p:BUILDING_USING_DOTNET=true
3738
popd
3839

3940
Then do iterative development using:
4041

41-
(from fsharp-conpiler-docs)
42+
(from fsharp-compiler-docs)
4243
dotnet fsdocs watch --sourcefolder fsharp --input fsharp/docs
4344

4445
## CI Pipeline

0 commit comments

Comments
 (0)