Skip to content

Only build FSharp.Core #90

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.100
dotnet-version: |
7.0.100
7.0.202
- name: Restore tools
run: dotnet tool restore
- name: Restore projects
Expand All @@ -37,8 +39,8 @@ jobs:
repository: dotnet/fsharp
path: ${{ env.FSHARP_DIR }}
ref: main
- name: Build fsharp main (turn of CI build status)
run: eng\CIBuild.cmd -noVisualStudio
- name: Build FSharp.Core in fsharp main
run: dotnet build .\src\FSharp.Core\ /p:BUILDING_USING_DOTNET=true
working-directory: ${{ env.FSHARP_DIR }}
- name: Checkout FSharp.Formatting main
uses: actions/checkout@v3
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.100
dotnet-version: |
7.0.100
7.0.202
- name: Restore tools
run: dotnet tool restore
- name: Restore projects
Expand All @@ -32,8 +34,8 @@ jobs:
repository: dotnet/fsharp
path: ${{ env.FSHARP_DIR }}
ref: main
- name: Build fsharp main (turn of CI build status)
run: eng\CIBuild.cmd -noVisualStudio
- name: Build FSharp.Core in fsharp main
run: dotnet build .\src\FSharp.Core\ /p:BUILDING_USING_DOTNET=true
working-directory: ${{ env.FSHARP_DIR }}
- name: Checkout FSharp.Formatting main
uses: actions/checkout@v3
Expand Down