Skip to content

Commit

Permalink
Test portions of the cake build.
Browse files Browse the repository at this point in the history
  • Loading branch information
veleek committed Aug 3, 2024
1 parent ecc55a8 commit 30642fe
Show file tree
Hide file tree
Showing 2 changed files with 253 additions and 244 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/AppveyorConversion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,30 @@ jobs:
- name: 🔧 Install dotnet tools
run: dotnet tool restore

- name: 🍰 Run cake
- name: 🍰 Run cake test
shell: pwsh
# run: dotnet cake --target=Package --configuration=Release
run: dotnet cake --target=BuildTestAndPackage --configuration=Release
run: dotnet cake --target=Test --configuration=Release

- name: Upload build logs
if: always()
uses: actions/upload-artifact@v4
with:
name: build-binlog
name: NUnitConsole.binlog
# This path is defined in build-settings.cake
path: TestNUnitBuild.binlog
path: NUnitConsole.binlog
if-no-files-found: error
retention-days: 1

- name: 🍰 Run cake package
if: always()
shell: pwsh
run: dotnet cake --target=BuildTestAndPackage --configuration=Release

- name: 🍰 Run cake buildtestandpackage
if: always()
shell: pwsh
run: dotnet cake --target=BuildTestAndPackage --configuration=Release

# - name: Upload artifacts
# uses: actions/upload-artifact@v3
# with:
Expand Down
Loading

0 comments on commit 30642fe

Please sign in to comment.