make.yml 694 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. name: Make
  3. on:
  4. schedule:
  5. - cron: '0 0 1 * *'
  6. push:
  7. branches:
  8. - "**"
  9. pull_request:
  10. branches:
  11. - master
  12. - main
  13. concurrency:
  14. group: ${{ github.workflow }}-${{ github.ref }}
  15. cancel-in-progress: true
  16. jobs:
  17. build:
  18. runs-on: ${{ matrix.os }}
  19. timeout-minutes: 120
  20. strategy:
  21. matrix:
  22. os:
  23. - ubuntu-latest
  24. steps:
  25. - name: Checkout
  26. uses: actions/checkout@v6
  27. with:
  28. submodules: true
  29. - name: Build
  30. shell: bash
  31. run: |
  32. sudo bash -c 'apt-get update; apt-get install -y lazarus' >/dev/null
  33. instantfpc -Fu/usr/lib/lazarus/*/components/lazutils .github/workflows/make.pas