Skip to content

Update delphi-package.yml #98

Update delphi-package.yml

Update delphi-package.yml #98

Workflow file for this run

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-win32-debug.xml
- name: Publish win32 debug Test Results
uses: actions/upload-artifact@v2
with:
name: TestResults
path: './test-results-win32-debug.xml'
- name: Publish win32 debug test results
uses: mikepenz/action-junit-report@v3
with:
report_paths: './test-results-win32-debug.xml'
- name: build win32 release
shell: cmd
id: build_win32_release
working-directory: scripts
run: build.bat Release Win32
- name: run win32 release tests
shell: cmd
working-directory: Win32\Release
run: Sempare.Template.Tester.exe -cm:quiet -exit:continue -b -xmlfile:../../test-results-win32-release.xml
- name: Publish win32 release Test Results
uses: actions/upload-artifact@v2
with:
name: TestResults
path: './test-results-win32-release.xml'
- name: Publish win32 release test results
uses: mikepenz/action-junit-report@v3
with:
report_paths: './test-results-win32-release.xml'