s7generic does not work properly, switch back to 1500 as a target #863
Workflow file for this 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
name: pr-dev | |
on: | |
pull_request: | |
branches: [ "dev" ] | |
paths: | |
- 'src/**' | |
- 'cake/**' | |
# - '.github/**' # temporarily removed just to tune nightly faster | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
configuration: [Release] | |
runs-on: [self-hosted, Windows, X64, L2, AX] # For a list of available runner types, refer to | |
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: '0' | |
- name: "Build script" | |
run: dotnet build cake/Build.csproj | |
- name: "Run build script" | |
run: dotnet run --project cake/Build.csproj --do-test --do-pack --test-level 1 |