Skip to content

Commit 6c65546

Browse files
authored
Merge pull request #90 from nojaf/only-build-fsharp-core
Only build FSharp.Core
2 parents 4e511d2 + db574a8 commit 6c65546

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/docs.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
- name: Setup .NET Core
2727
uses: actions/setup-dotnet@v3
2828
with:
29-
dotnet-version: 7.0.100
29+
dotnet-version: |
30+
7.0.100
31+
7.0.202
3032
- name: Restore tools
3133
run: dotnet tool restore
3234
- name: Restore projects
@@ -37,8 +39,8 @@ jobs:
3739
repository: dotnet/fsharp
3840
path: ${{ env.FSHARP_DIR }}
3941
ref: main
40-
- name: Build fsharp main (turn of CI build status)
41-
run: eng\CIBuild.cmd -noVisualStudio
42+
- name: Build FSharp.Core in fsharp main
43+
run: dotnet build .\src\FSharp.Core\ /p:BUILDING_USING_DOTNET=true
4244
working-directory: ${{ env.FSHARP_DIR }}
4345
- name: Checkout FSharp.Formatting main
4446
uses: actions/checkout@v3

.github/workflows/pr.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
- name: Setup .NET Core
2222
uses: actions/setup-dotnet@v3
2323
with:
24-
dotnet-version: 7.0.100
24+
dotnet-version: |
25+
7.0.100
26+
7.0.202
2527
- name: Restore tools
2628
run: dotnet tool restore
2729
- name: Restore projects
@@ -32,8 +34,8 @@ jobs:
3234
repository: dotnet/fsharp
3335
path: ${{ env.FSHARP_DIR }}
3436
ref: main
35-
- name: Build fsharp main (turn of CI build status)
36-
run: eng\CIBuild.cmd -noVisualStudio
37+
- name: Build FSharp.Core in fsharp main
38+
run: dotnet build .\src\FSharp.Core\ /p:BUILDING_USING_DOTNET=true
3739
working-directory: ${{ env.FSHARP_DIR }}
3840
- name: Checkout FSharp.Formatting main
3941
uses: actions/checkout@v3

0 commit comments

Comments
 (0)