This repository has been archived by the owner on Sep 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
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
11 changed files
with
81 additions
and
59 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 |
---|---|---|
|
@@ -13,18 +13,21 @@ jobs: | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
os: [ ubuntu-18.04, windows-2019, macos-10.15 ] | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.ref }} | ||
- name: Checkout the repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Fetch all tags and branches | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Cache Tools | ||
uses: actions/cache@v2 | ||
with: | ||
path: tools | ||
key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }} | ||
|
||
- name: Build project | ||
uses: cake-build/cake-action@v1 | ||
with: | ||
|
@@ -33,18 +36,17 @@ jobs: | |
verbosity: Diagnostic | ||
cake-version: 0.38.5 | ||
cake-bootstrap: true | ||
# currently, Cake.Recipe does not upload artifacts when run on gh-actions | ||
- name: Upload Issues | ||
|
||
- name: Upload Issues-Report | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
if-no-files-found: warn | ||
name: ${{ matrix.os }} Issues | ||
path: | | ||
BuildArtifacts/report.html | ||
BuildArtifacts/**/coverlet/*.xml | ||
name: ${{ matrix.os }} issues | ||
path: BuildArtifacts/report.html | ||
|
||
- name: Upload Packages | ||
uses: actions/upload-artifact@v2 | ||
if: matrix.os == 'windows-latest' | ||
if: runner.os == 'Windows' | ||
with: | ||
if-no-files-found: warn | ||
name: package | ||
|
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,13 @@ | ||
name: Run dependabot for cake | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# run everyday at 6 | ||
- cron: '0 6 * * *' | ||
|
||
jobs: | ||
dependabot-cake: | ||
runs-on: ubuntu-latest # linux, because this is a docker-action | ||
steps: | ||
- name: check/update cake dependencies | ||
uses: nils-org/dependabot-cake-action@v1 |
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
|
||
steps: | ||
- name: checkout | ||
uses: actions/[email protected].3 #https://github.com/actions/checkout | ||
uses: actions/[email protected].4 #https://github.com/actions/checkout | ||
with: | ||
fetch-depth: 0 # GitVersion is somewhat irritated when fetch-depth is "1".... | ||
ref: ${{ github.event.ref }} | ||
|
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ dist/ | |
/config.wyam.* | ||
tools/ | ||
/BuildArtifacts | ||
.history/ |
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 was deleted.
Oops, something went wrong.
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