Skip to content

Commit 3b8fc12

Browse files
committed
nuke files and replace by doc build
1 parent c09057c commit 3b8fc12

File tree

3,698 files changed

+272
-589582
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,698 files changed

+272
-589582
lines changed

.config/dotnet-tools.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"fsharp.formatting.commandtool": {
6+
"version": "11.5.1",
7+
"commands": [
8+
"fsdocs"
9+
]
10+
}
11+
}
12+
}

.devcontainer/Dockerfile

Lines changed: 0 additions & 40 deletions
This file was deleted.

.devcontainer/devcontainer.json

Lines changed: 0 additions & 34 deletions
This file was deleted.

.gitattributes

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

.github/issue_template.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/workflows/docs.yml

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,38 @@ name: Release docs
33
on:
44
push:
55
branches:
6-
- master
6+
- main
7+
workflow_dispatch:
78

89
jobs:
910
build:
1011

11-
runs-on: macos-latest
12+
strategy:
13+
matrix:
14+
os: [windows-latest]
15+
dotnet: [5.0.400]
16+
runs-on: ${{ matrix.os }}
1217

1318
steps:
1419
- uses: actions/checkout@v2
1520
- name: Setup .NET Core
1621
uses: actions/setup-dotnet@v1
1722
with:
18-
dotnet-version: 3.1.301
23+
dotnet-version: 5.0.400
1924
- name: Restore tools
2025
run: dotnet tool restore
21-
working-directory: ./fcs
22-
- name: Restore dependencies
23-
run: dotnet restore
24-
working-directory: ./fcs
25-
- name: Run Fornax
26-
run: dotnet fake build -t GenerateDocs
27-
working-directory: ./fcs
26+
- name: Restore projects
27+
run: dotnet restore FSharp.Compiler.Service\FSharp.Compiler.Service.fsproj
28+
- name: Checkout fsharp master
29+
run: git clone https://github.com/dotnet/fsharp --depth 1 fsharp -b main
30+
- name: Build fsharp master (turn of CI build status)
31+
run: cd fsharp && eng\CIBuild.cmd
32+
- name: Run fsdocs
33+
run: dotnet fsdocs build --sourcefolder fsharp
2834
- name: Deploy
2935
uses: peaceiris/actions-gh-pages@v3
3036
with:
3137
personal_token: ${{ secrets.GITHUB_TOKEN }}
32-
publish_dir: ./fcs/docsrc/_public
38+
publish_dir: ./output
3339
publish_branch: gh-pages
34-
force_orphan: true
40+
force_orphan: true

.github/workflows/pr.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Pull request checks
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- '**'
7+
8+
jobs:
9+
build:
10+
11+
strategy:
12+
matrix:
13+
os: [windows-latest]
14+
dotnet: [5.0.400]
15+
runs-on: ${{ matrix.os }}
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Setup .NET Core
20+
uses: actions/setup-dotnet@v1
21+
with:
22+
dotnet-version: 5.0.400
23+
- name: Restore tools
24+
run: dotnet tool restore
25+
- name: Restore projects
26+
run: dotnet restore FSharp.Compiler.Service\FSharp.Compiler.Service.fsproj
27+
- name: Checkout fsharp master
28+
run: git clone https://github.com/dotnet/fsharp --depth 1 fsharp -b main
29+
- name: Build fsharp master (turn of CI build status)
30+
run: cd fsharp && eng\CIBuild.cmd
31+
- name: Run fsdocs
32+
run: dotnet fsdocs build --sourcefolder fsharp

.github/workflows/publish.yml

Lines changed: 0 additions & 44 deletions
This file was deleted.

0 commit comments

Comments
 (0)