Merge branch 'context_refactor_template_registry' of github.com:sempa… #34
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, pull_request] | |
jobs: | |
build_sempare_template_engine: | |
runs-on: self-hosted | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- name: build win32 debug | |
id: build_win32_debug | |
run: | | |
cmd.exe /c scripts\build.bat Debug Win32 | |
- name: build win32 release | |
id: build_win32_release | |
run: | | |
cmd.exe /c scripts\build.bat Release Win32 | |