Skip to content

Commit

Permalink
Merge branch 'release/7.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed May 6, 2023
2 parents 1b79192 + 851307c commit cda28e5
Show file tree
Hide file tree
Showing 1,090 changed files with 353,587 additions and 347,099 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/alpha-deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_alpha-deployment --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------

name: alpha-deployment

on:
push:
branches:
- develop

jobs:
ubuntu-latest:
name: ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
- name: 'Run: Test, Pack, Publish'
run: ./build.cmd Test Pack Publish
env:
FeedzNuGetApiKey: ${{ secrets.FEEDZ_NUGET_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
109 changes: 0 additions & 109 deletions .github/workflows/continuous.yml

This file was deleted.

44 changes: 44 additions & 0 deletions .github/workflows/macos-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_macos-latest --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------

name: macos-latest

on:
push:
branches-ignore:
- master
- 'release/*'
pull_request:
branches:
- develop

jobs:
macos-latest:
name: macos-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
- name: 'Run: Test, Pack'
run: ./build.cmd Test Pack
18 changes: 18 additions & 0 deletions .github/workflows/qodana-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Qodana Scan

on: [push, pull_request]

jobs:
qodana-scan:
name: Qodana Scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@main
with:
upload-result: false
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
44 changes: 44 additions & 0 deletions .github/workflows/ubuntu-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_ubuntu-latest --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------

name: ubuntu-latest

on:
push:
branches-ignore:
- master
- 'release/*'
pull_request:
branches:
- develop

jobs:
ubuntu-latest:
name: ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
- name: 'Run: Test, Pack'
run: ./build.cmd Test Pack
44 changes: 44 additions & 0 deletions .github/workflows/windows-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_windows-latest --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------

name: windows-latest

on:
push:
branches-ignore:
- master
- 'release/*'
pull_request:
branches:
- develop

jobs:
windows-latest:
name: windows-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
- name: 'Run: Test, Pack'
run: ./build.cmd Test Pack
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

31 changes: 24 additions & 7 deletions .nuke/build.schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Build Schema",
"$ref": "#/definitions/build",
"title": "Build Schema",
"definitions": {
"build": {
"type": "object",
Expand All @@ -28,7 +28,11 @@
"type": "string",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
},
"GitHubRegistryApiKey": {
"FeedzNuGetApiKey": {
"type": "string",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
},
"GitHubToken": {
"type": "string",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
},
Expand All @@ -39,10 +43,6 @@
"GitterRoomId": {
"type": "string"
},
"GlobalSolution": {
"type": "string",
"description": "Path to a solution file that is automatically loaded. Default is nuke-global.sln"
},
"Help": {
"type": "boolean",
"description": "Shows the help text for this build assembly"
Expand Down Expand Up @@ -126,10 +126,17 @@
"type": "string",
"enum": [
"Announce",
"AnnounceDiscord",
"AnnounceGitter",
"AnnounceMastodon",
"AnnounceSlack",
"AnnounceTwitter",
"Changelog",
"CheckoutExternalRepositories",
"Clean",
"Compile",
"CreateGitHubRelease",
"DeletePackages",
"DownloadLicenses",
"GenerateGlobalSolution",
"GeneratePublicApi",
Expand Down Expand Up @@ -170,10 +177,17 @@
"type": "string",
"enum": [
"Announce",
"AnnounceDiscord",
"AnnounceGitter",
"AnnounceMastodon",
"AnnounceSlack",
"AnnounceTwitter",
"Changelog",
"CheckoutExternalRepositories",
"Clean",
"Compile",
"CreateGitHubRelease",
"DeletePackages",
"DownloadLicenses",
"GenerateGlobalSolution",
"GeneratePublicApi",
Expand All @@ -199,6 +213,9 @@
]
}
},
"TestDegreeOfParallelism": {
"type": "integer"
},
"TwitterAccessToken": {
"type": "string",
"default": "Secrets must be entered via 'nuke :secrets [profile]'"
Expand Down Expand Up @@ -231,4 +248,4 @@
}
}
}
}
}
Loading

0 comments on commit cda28e5

Please sign in to comment.