Skip to content

(GH-43) Add Support for running Cake Frosting Projects #58

(GH-43) Add Support for running Cake Frosting Projects

(GH-43) Add Support for running Cake Frosting Projects #58

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test-with-script:
name: Test with Cake Script
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
env:
script-directory: integrationtests/script
tools-directory: integrationtests/script/tools
steps:
- name: Get the sources
uses: actions/checkout@v1
- name: Install Node 20
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install the .NET 6 SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
- name: Run a specific Cake script
uses: ./
with:
script-path: ${{ env.script-directory }}/build.cake
- name: Run a specific target
uses: ./
with:
script-path: ${{ env.script-directory }}/build.cake
target: Successful-Task
- name: Remove the tools directory
run: rm -rf ${{ env.tools-directory }}
shell: bash
- name: Run with a specific Cake version
env:
EXPECTED_CAKE_VERSION: 2.1.0
uses: ./
with:
cake-version: 2.1.0
script-path: ${{ env.script-directory }}/build.cake
target: Test-Cake-Version
- name: Run with a different Cake version in the same build
env:
EXPECTED_CAKE_VERSION: 2.0.0
uses: ./
with:
cake-version: 2.0.0
script-path: ${{ env.script-directory }}/build.cake
target: Test-Cake-Version
- name: Run with a Cake version set by the tool manifest
env:
EXPECTED_CAKE_VERSION: 1.2.0
uses: ./
with:
cake-version: tool-manifest
script-path: ${{ env.script-directory }}/build.cake
target: Test-Cake-Version
- name: Run automatic bootstrapping of Cake modules (Cake >= 1.0.0)
uses: ./
with:
cake-bootstrap: auto
cake-version: 1.0.0
script-path: ${{ env.script-directory }}/module.cake
- name: Remove the tools directory
run: rm -rf ${{ env.tools-directory }}
shell: bash
- name: Run automatic bootstrapping of Cake modules (Cake < 1.0.0)
uses: ./
with:
cake-bootstrap: auto
cake-version: 0.38.5
script-path: ${{ env.script-directory }}/build.cake
target: Successful-Task
- name: Remove the tools directory
run: rm -rf ${{ env.tools-directory }}
shell: bash
- name: Run explicit bootstrapping of Cake modules (Cake >= 1.0.0)
uses: ./
with:
cake-bootstrap: explicit
cake-version: 1.0.0
script-path: ${{ env.script-directory }}/module.cake
- name: Remove the tools directory
run: rm -rf ${{ env.tools-directory }}
shell: bash
- name: Run explicit bootstrapping of Cake modules (Cake < 1.0.0)
uses: ./
with:
cake-bootstrap: explicit
cake-version: 0.38.5
script-path: ${{ env.script-directory }}/module.cake
- name: Remove the tools directory
run: rm -rf ${{ env.tools-directory }}
shell: bash
- name: Run skip bootstrapping of Cake modules (Cake >= 1.0.0)
uses: ./
with:
cake-bootstrap: skip
cake-version: 1.0.0
script-path: ${{ env.script-directory }}/build.cake
target: Successful-Task
- name: Run skip bootstrapping of Cake modules (Cake < 1.0.0)
uses: ./
with:
cake-bootstrap: skip
cake-version: 0.38.5
script-path: ${{ env.script-directory }}/build.cake
target: Successful-Task
- name: Run with a specific verbosity level
uses: ./
env:
EXPECTED_VERBOSITY: Diagnostic
with:
verbosity: Diagnostic
script-path: ${{ env.script-directory }}/build.cake
target: Test-Verbosity
- name: Do a dry run
uses: ./
with:
dry-run: true
script-path: ${{ env.script-directory }}/build.cake
target: Test-Dry-Run
- name: Run with custom script parameters
uses: ./
env:
EXPECTED_STRING_ARGUMENT: '''value'''
EXPECTED_NUMERIC_ARGUMENT: '3'
EXPECTED_BOOLEAN_ARGUMENT: 'true'
with:
script-path: ${{ env.script-directory }}/build.cake
target: Test-Script-Parameters
arguments: |
string-parameter: 'value'
numeric-parameter: 3
boolean-parameter: true
test-with-frosting:
name: Test with Cake Frosting
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
env:
csproj-directory: integrationtests/frosting
steps:
- name: Get the sources
uses: actions/checkout@v1
- name: Install Node 20
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install the .NET 8 SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Run a specific Cake Frosting project
uses: ./
with:
csproj-path: ${{ env.csproj-directory}}/Build.csproj
- name: Run a specific Cake Frosting task
uses: ./
with:
csproj-path: ${{ env.csproj-directory}}/Build.csproj
target: Successful-Task
- name: Run with a specific verbosity level
uses: ./
env:
EXPECTED_VERBOSITY: Diagnostic
with:
verbosity: Diagnostic
csproj-path: ${{ env.csproj-directory}}/Build.csproj
target: Test-Verbosity