Update delphi-package.yml #96
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: Delphi package | |
on: [push] | |
jobs: | |
build_sempare_template_engine: | |
runs-on: self-hosted | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- name: Remove comment from specific line in file | |
run: | | |
$filePath = "src/Sempare.Template.Compiler.inc" | |
$lineToFind = '// {$DEFINE SEMPARE_TEMPLATE_CONFIRM_LICENSE}' | |
$newLine = '{$DEFINE SEMPARE_TEMPLATE_CONFIRM_LICENSE}' | |
(Get-Content $filePath) -replace [regex]::Escape($lineToFind), $newLine | Set-Content $filePath | |
- name: build win32 debug | |
shell: cmd | |
id: build_win32_debug | |
working-directory: scripts | |
run: build.bat Debug Win32 | |
- name: run win32 debug tests | |
shell: cmd | |
working-directory: Win32\Debug | |
run: Sempare.Template.Tester.exe -cm:quiet -exit:continue -b -xmlfile:./test-results.xml | |
- name: Publish Test Results | |
uses: actions/upload-artifact@v2 | |
with: | |
name: TestResults | |
path: './Win32/Debug/test-results.xml' | |
- name: Publish test results | |
uses: mikepenz/action-junit-report@v3 | |
with: | |
report_paths: './Win32/Debug/test-results.xml' | |