-
-
Notifications
You must be signed in to change notification settings - Fork 968
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix-validators
- Loading branch information
Showing
280 changed files
with
6,528 additions
and
1,122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: docs-stable | ||
|
||
on: | ||
push: | ||
branches: | ||
- docs-stable | ||
workflow_dispatch: | ||
|
||
permissions: write-all | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: docs-stable | ||
|
||
- name: Build BenchmarkDotNet | ||
run: ./build.bat --target Build | ||
|
||
# Temporary disabled because of the API limit | ||
# - name: Download changelog | ||
# run: ./build.bat --target DocFX_Changelog_Download --LatestVersions true --StableVersions true | ||
# env: | ||
# GITHUB_PRODUCT: ChangelogBuilder | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build documentation | ||
run: ./build.bat --target DocFX_Build | ||
|
||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: site | ||
path: docs/_site | ||
|
||
deploy: | ||
concurrency: ci-${{ github.ref }} | ||
needs: [build] | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: docs-stable | ||
|
||
- name: Download Artifacts | ||
uses: actions/download-artifact@v1 | ||
with: | ||
name: site | ||
|
||
- name: Deploy documentation | ||
uses: JamesIves/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
BRANCH: gh-pages | ||
FOLDER: site | ||
GIT_CONFIG_NAME: Andrey Akinshin | ||
GIT_CONFIG_EMAIL: [email protected] | ||
CLEAN: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Documentation Checks | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- "docs/**/*" | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- "docs/**/*" | ||
jobs: | ||
spellcheck: | ||
name: "Docs: Spellcheck" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
name: Check out the code | ||
- uses: actions/setup-node@v1 | ||
name: Setup node | ||
with: | ||
node-version: "16" | ||
- run: npm install -g cspell | ||
name: Install cSpell | ||
- run: cspell --config ./cSpell.json "docs/**/*.md" --no-progress | ||
name: Run cSpell |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
{ | ||
"version": "0.2", | ||
"language": "en", | ||
"words": [ | ||
"Alloc", | ||
"analyse", | ||
"analyser", | ||
"Analysers", | ||
"Autofac", | ||
"bitness", | ||
"corlib", | ||
"Cygwin", | ||
"Diagnoser", | ||
"diagnosers", | ||
"disassemblers", | ||
"disassm", | ||
"Jits", | ||
"Jitting", | ||
"LINQ", | ||
"microbenchmarking", | ||
"microbenchmarks", | ||
"Mispredict", | ||
"Mispredictions", | ||
"msbuild", | ||
"Multimodal", | ||
"multimodality", | ||
"netcoreapp", | ||
"powerplans", | ||
"Pseudocode", | ||
"runtimes", | ||
"Serilog", | ||
"Tailcall", | ||
"toolchains", | ||
"unmanaged" | ||
], | ||
"ignoreWords": [ | ||
"Akinshin", | ||
"Andrey", | ||
"Expecto", | ||
"Jint", | ||
"LoongArch64", | ||
"macrobenchmark", | ||
"MediatR", | ||
"Nagórski's", | ||
"Newtonsoft", | ||
"NodaTime", | ||
"Npgsql", | ||
"Sitnik's", | ||
"Wojciech", | ||
"Avalonia", | ||
"Gitter" | ||
], | ||
"patterns": [ | ||
{ | ||
"name": "Markdown links", | ||
"pattern": "\\((.*)\\)", | ||
"description": "" | ||
}, | ||
{ | ||
"name": "Markdown code blocks", | ||
"pattern": "/^(\\s*`{3,}).*[\\s\\S]*?^\\1/gmx", | ||
"description": "Taken from the cSpell example at https://cspell.org/configuration/patterns/#verbose-regular-expressions" | ||
}, | ||
{ | ||
"name": "Inline code blocks", | ||
"pattern": "\\`([^\\`\\r\\n]+?)\\`", | ||
"description": "https://stackoverflow.com/questions/41274241/how-to-capture-inline-markdown-code-but-not-a-markdown-code-fence-with-regex" | ||
}, | ||
{ | ||
"name": "Link contents", | ||
"pattern": "\\<a(.*)\\>", | ||
"description": "" | ||
}, | ||
{ | ||
"name": "Snippet references", | ||
"pattern": "-- snippet:(.*)", | ||
"description": "" | ||
}, | ||
{ | ||
"name": "Snippet references 2", | ||
"pattern": "\\<\\[sample:(.*)", | ||
"description": "another kind of snippet reference" | ||
}, | ||
{ | ||
"name": "Multi-line code blocks", | ||
"pattern": "/^\\s*```[\\s\\S]*?^\\s*```/gm" | ||
}, | ||
{ | ||
"name": "HTML Tags", | ||
"pattern": "<[^>]*>", | ||
"description": "Reference: https://stackoverflow.com/questions/11229831/regular-expression-to-remove-html-tags-from-a-string" | ||
} | ||
], | ||
"ignoreRegExpList": [ | ||
"Markdown links", | ||
"Markdown code blocks", | ||
"Inline code blocks", | ||
"Link contents", | ||
"Snippet references", | ||
"Snippet references 2", | ||
"Multi-line code blocks", | ||
"HTML Tags" | ||
], | ||
"ignorePaths": [ | ||
"docs/_changelog/**/*.md", | ||
"docs/articles/team.md" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Highlights: | ||
|
||
* Disassembly Diagnoser (read more here: [Disassembling .NET Code with BenchmarkDotNet](http://adamsitnik.com/Disassembly-Diagnoser/)) | ||
* Disassembly Diagnoser (read more here: [Disassembling .NET Code with BenchmarkDotNet](https://adamsitnik.com/Disassembly-Diagnoser/)) | ||
* ParamsSources | ||
* .NET Core x86 support | ||
* Environment variables and Mono args support | ||
* Better environment description | ||
* More: additional sections in the documentation, bug fixes, build script improvements, internal refactoring. | ||
|
||
Overview post: [BenchmarkDotNet v0.10.10](http://aakinshin.net/blog/post/bdn-v0_10_10/) | ||
Overview post: [BenchmarkDotNet v0.10.10](https://aakinshin.net/posts/bdn-v0_10_10/) |
Oops, something went wrong.