Skip to content

Commit 4a24cd4

Browse files
committed
Merge branch 'release/6.1.0'
2 parents 0616863 + 140353f commit 4a24cd4

File tree

104 files changed

+10459
-430
lines changed

Some content is hidden

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

104 files changed

+10459
-430
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ indent_size = 2
2323
indent_size = 2
2424

2525
# JSON files
26-
[*.json]
26+
[*.{json,js}]
2727
indent_size = 2
2828

2929
# Dotnet code style settings:

.github/workflows/continuous.yml

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ jobs:
3030
name: windows-latest
3131
runs-on: windows-latest
3232
steps:
33-
- uses: actions/checkout@v1
33+
- uses: actions/checkout@v2
34+
with:
35+
submodules: recursive
36+
fetch-depth: 0
3437
- name: Cache .nuke/temp, ~/.nuget/packages
3538
uses: actions/cache@v2
3639
with:
@@ -42,11 +45,22 @@ jobs:
4245
run: ./build.cmd Test Pack
4346
env:
4447
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48+
- uses: actions/upload-artifact@v1
49+
with:
50+
name: test-results
51+
path: output/test-results
52+
- uses: actions/upload-artifact@v1
53+
with:
54+
name: packages
55+
path: output/packages
4556
ubuntu-latest:
4657
name: ubuntu-latest
4758
runs-on: ubuntu-latest
4859
steps:
49-
- uses: actions/checkout@v1
60+
- uses: actions/checkout@v2
61+
with:
62+
submodules: recursive
63+
fetch-depth: 0
5064
- name: Cache .nuke/temp, ~/.nuget/packages
5165
uses: actions/cache@v2
5266
with:
@@ -58,11 +72,22 @@ jobs:
5872
run: ./build.cmd Test Pack
5973
env:
6074
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
75+
- uses: actions/upload-artifact@v1
76+
with:
77+
name: test-results
78+
path: output/test-results
79+
- uses: actions/upload-artifact@v1
80+
with:
81+
name: packages
82+
path: output/packages
6183
macOS-latest:
6284
name: macOS-latest
6385
runs-on: macOS-latest
6486
steps:
65-
- uses: actions/checkout@v1
87+
- uses: actions/checkout@v2
88+
with:
89+
submodules: recursive
90+
fetch-depth: 0
6691
- name: Cache .nuke/temp, ~/.nuget/packages
6792
uses: actions/cache@v2
6893
with:
@@ -74,3 +99,11 @@ jobs:
7499
run: ./build.cmd Test Pack
75100
env:
76101
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
102+
- uses: actions/upload-artifact@v1
103+
with:
104+
name: test-results
105+
path: output/test-results
106+
- uses: actions/upload-artifact@v1
107+
with:
108+
name: packages
109+
path: output/packages

.github/workflows/website.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: website
2+
3+
on:
4+
push:
5+
branches: [develop]
6+
paths:
7+
- 'website/**'
8+
9+
jobs:
10+
deploy:
11+
name: Deploy Website
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v2
16+
with:
17+
node-version: 14.x
18+
cache: npm
19+
cache-dependency-path: website/package-lock.json
20+
- name: Build
21+
working-directory: website
22+
run: |
23+
npm ci
24+
npm run build
25+
26+
# Popular action to deploy to GitHub Pages:
27+
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
28+
- name: Deploy
29+
uses: peaceiris/actions-gh-pages@v3
30+
with:
31+
github_token: ${{ secrets.GITHUB_TOKEN }}
32+
# Build output to publish to the `gh-pages` branch:
33+
publish_dir: ./website/build
34+
# user_name: github-actions[bot]
35+
# user_email: 41898282+github-actions[bot]@users.noreply.github.com

.gitlab-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ image: mcr.microsoft.com/dotnet/sdk:5.0
22

33
variables:
44
GIT_DEPTH: 0
5+
GIT_SUBMODULE_STRATEGY: recursive
56

67
stages:
78
- build

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "external/spectre.console"]
2+
path = external/spectre.console
3+
url = https://github.com/matkoch/spectre.console

.idea/.idea.nuke-common/.idea/runConfigurations/Run_MSBuildTasks.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.nuke/build.schema.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"AppVeyor",
5151
"AzurePipelines",
5252
"Bamboo",
53+
"Bitbucket",
5354
"Bitrise",
5455
"GitHubActions",
5556
"GitLab",
@@ -140,7 +141,8 @@
140141
"Restore",
141142
"SignPackages",
142143
"Test",
143-
"UpdateContributors"
144+
"UpdateContributors",
145+
"UpdateStargazers"
144146
]
145147
}
146148
},
@@ -182,7 +184,8 @@
182184
"Restore",
183185
"SignPackages",
184186
"Test",
185-
"UpdateContributors"
187+
"UpdateContributors",
188+
"UpdateStargazers"
186189
]
187190
}
188191
},

.space.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ job("continuous") {
2424

2525
container("mcr.microsoft.com/dotnet/sdk:6.0") {
2626
shellScript {
27-
content = "./build.sh Test"
27+
content = """
28+
git submodule update --init --recursive
29+
./build.sh Test
30+
"""
2831
}
2932
}
3033

.teamcity/patches/projects/_Self.kts

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

.travis.yml

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

0 commit comments

Comments
 (0)