Skip to content

Commit

Permalink
unit tests 2
Browse files Browse the repository at this point in the history
  • Loading branch information
andgineer committed Mar 25, 2024
1 parent 582d60a commit fd06228
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,26 +28,27 @@ jobs:
- name: Run tests (Windows)
if: ${{ matrix.operating-system == 'windows-latest' }}
run: |
lazbuild -B --bm=Release "tests/test_fpc.lpi"
lazbuild -B --bm=Release "test/test_fpc.lpi"
ls -la
ls -la test
test_fpc.exe "--help"
test_fpc.exe "--all" "--format=plain"
- name: Build tests (Ubuntu)
if: ${{ matrix.operating-system == 'ubuntu-latest' }}
run: |
echo Building with GTK2
lazbuild -B --bm=Release "tests/test_fpc.lpi"
lazbuild -B --bm=Release "test/test_fpc.lpi"
echo Installing Qt5 Dev
sudo apt update
sudo apt install libqt5pas-dev -y
echo Building with Qt5
test_fpc "--all" "--format=plain"
lazbuild -B --bm=Release --ws=qt5 "tests/test_fpc.lpi"
lazbuild -B --bm=Release --ws=qt5 "test/test_fpc.lpi"
test_fpc "--all" "--format=plain"
- name: Build tests (macOS)
if: ${{ matrix.operating-system == 'macos-latest' }}
run: |
lazbuild -B --bm=Release --ws=cocoa "tests/test_fpc.lpi"
lazbuild -B --bm=Release --ws=cocoa "test/test_fpc.lpi"
test_fpc "--all" "--format=plain"

0 comments on commit fd06228

Please sign in to comment.