forked from cake-contrib/Cake.Issues
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
561 changed files
with
40,411 additions
and
195 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
9 changes: 9 additions & 0 deletions
9
.azuredevops/pipelines/templates/steps/install-markdownlint.yml
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,9 @@ | ||
# Installs markdownlint | ||
|
||
steps: | ||
- task: NodeTool@0 | ||
inputs: | ||
versionSpec: '20.x' | ||
displayName: 'Install NodeJs 20.x' | ||
- script: npm install -g markdownlint-cli | ||
displayName: 'Install markdownlint' |
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,7 @@ | ||
# Installs .NET 6 | ||
|
||
steps: | ||
- task: UseDotNet@2 | ||
inputs: | ||
version: '5.x' | ||
displayName: 'Install .NET 5' |
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,7 @@ | ||
# Installs .NET 6 | ||
|
||
steps: | ||
- task: UseDotNet@2 | ||
inputs: | ||
version: '6.x' | ||
displayName: 'Install .NET 6' |
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,7 @@ | ||
# Installs .NET 6 | ||
|
||
steps: | ||
- task: UseDotNet@2 | ||
inputs: | ||
version: '7.x' | ||
displayName: 'Install .NET 7' |
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,7 @@ | ||
# Installs .NET 6 | ||
|
||
steps: | ||
- task: UseDotNet@2 | ||
inputs: | ||
version: '8.x' | ||
displayName: 'Install .NET 8' |
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
11 changes: 11 additions & 0 deletions
11
.azuredevops/pipelines/templates/steps/provide-nuget-packages.yml
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,11 @@ | ||
# Makes NuGet packages available for testing | ||
|
||
steps: | ||
- download: current | ||
artifact: NuGet Package | ||
displayName: 'Download build artifact' | ||
- task: CopyFiles@2 | ||
inputs: | ||
sourceFolder: $(Pipeline.Workspace)/NuGet Package | ||
targetFolder: $(Build.SourcesDirectory)/BuildArtifacts/Packages/NuGet | ||
displayName: 'Copy build artifact for test run' |
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,68 @@ | ||
name: Build and tests | ||
|
||
# Workflow Trigger | ||
on: | ||
# Trigger the workflow on a pull request to any branch | ||
pull_request: | ||
# Triggers the workflow in the event there is a push to master | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
# Build | ||
Build: | ||
name: Build | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Get the sources | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
- name: Fetch all tags and branches | ||
run: git fetch --prune --unshallow | ||
- name: Install .NET | ||
uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 | ||
with: | ||
# .NET 5 required for GitVersion | ||
dotnet-version: | | ||
5.x | ||
6.x | ||
7.x | ||
8.x | ||
- name: Build | ||
run: ./build.sh | ||
shell: bash | ||
- name: Publish NuGet package as build artifact | ||
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4 | ||
with: | ||
name: NuGet Package | ||
path: ./BuildArtifacts/Packages/NuGet/ | ||
# Integration Tests Cake.Issues.PullRequests.GitHubActions Cake Scripting | ||
IntegrationTestsPullRequestsGitHubActionsCakeScripting: | ||
name: Integration Tests Cake.Issues.PullRequests.GitHubActions Cake Scripting | ||
needs: Build | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ | ||
windows-2019, windows-2022, | ||
# Disabled until https://github.com/cake-contrib/Cake.Issues/issues/514 is fixed | ||
# ubuntu-20.04, ubuntu-22.04, | ||
macos-11, macos-14] | ||
dotnet: [6.x, 7.x, 8.x] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Get the sources | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
- name: Download build artifact | ||
uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4 | ||
with: | ||
name: NuGet Package | ||
path: ./BuildArtifacts/Packages/NuGet | ||
- name: Install .NET | ||
uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4 | ||
with: | ||
dotnet-version: ${{ matrix.dotnet }} | ||
- name: Run integration tests | ||
run: ./build.sh --verbosity=diagnostic | ||
working-directory: ./tests/Cake.Issues.PullRequests.GitHubActions/script-runner/ | ||
shell: bash |
Oops, something went wrong.