feat: Skeleton of options in and out folders #2
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: build-test | |
on: | |
push: | |
branches: [ main ] | |
tags: [ "*" ] | |
paths-ignore: [ "README.md", "LICENSE", "cliff.toml", "CHANGELOG.md" ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest, windows-latest, macos-latest] | |
lazarus-versions: [stable, 2.2.0, 2.0.12] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Install Lazarus | |
uses: gcarreno/setup-lazarus@v3 | |
with: | |
lazarus-version: ${{ matrix.lazarus-versions }} | |
with-cache: false | |
- name: Build the Migration to Server App | |
run: lazbuild -B --bm=Release "migration2server/migration2server.lpi" | |
- name: Build the Migration to Wallet App | |
run: lazbuild -B --bm=Release "migration2wallet/migration2wallet.lpi" |