{"id":38437393,"url":"https://github.com/ollydev/setup-lazarus-fpcup","last_synced_at":"2026-01-17T04:31:13.066Z","repository":{"id":46115299,"uuid":"388659714","full_name":"ollydev/setup-lazarus-fpcup","owner":"ollydev","description":"Build and cache Lazarus on a Github Actions workflow using fpcup.","archived":false,"fork":false,"pushed_at":"2023-07-03T15:33:08.000Z","size":1178,"stargazers_count":7,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-22T11:08:07.711Z","etag":null,"topics":["fpc","fpcup","fpcupdeluxe","github-action","lazarus","pascal"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ollydev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-07-23T02:55:47.000Z","updated_at":"2023-11-19T21:14:16.000Z","dependencies_parsed_at":"2023-01-24T06:45:55.443Z","dependency_job_id":null,"html_url":"https://github.com/ollydev/setup-lazarus-fpcup","commit_stats":{"total_commits":10,"total_committers":2,"mean_commits":5.0,"dds":0.09999999999999998,"last_synced_commit":"28dcbcd7febd6abecf24ad84bb8858346ef9d55d"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/ollydev/setup-lazarus-fpcup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ollydev%2Fsetup-lazarus-fpcup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ollydev%2Fsetup-lazarus-fpcup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ollydev%2Fsetup-lazarus-fpcup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ollydev%2Fsetup-lazarus-fpcup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ollydev","download_url":"https://codeload.github.com/ollydev/setup-lazarus-fpcup/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ollydev%2Fsetup-lazarus-fpcup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28495105,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T02:39:23.645Z","status":"ssl_error","status_checked_at":"2026-01-17T02:34:19.649Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fpc","fpcup","fpcupdeluxe","github-action","lazarus","pascal"],"created_at":"2026-01-17T04:31:12.972Z","updated_at":"2026-01-17T04:31:13.033Z","avatar_url":"https://github.com/ollydev.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Github Action which builds FPC and Lazarus on a runner using [fpcup](https://github.com/LongDirtyAnimAlf/Reiniero-fpcup). Useful for building projects with custom FPC \u0026 Lazarus versions.\n\nSupported platforms:\n\n- Windows: `win64`, `win32` (cross compiled)\n- Linux: `x86_64`, `aarch64` (cross compiled)\n- MacOS: `x86_64`, `aarch64` (cross compiled)\n\nInstallations are cached so expect that first builds could take ~20 minutes (MacOS being the slowest)\n\nCaches that are not in a week are [removed](https://github.com/actions/cache#cache-limits)\n\n---\n\n### Required Inputs\n  \n- `laz` - Lazarus GitLab branch or commit sha to install\n- `fpc` - FPC GitLab branch or commit sha to install\n\n### Optional Inputs\n\n- `fpcup` - fpcup version to use from https://github.com/LongDirtyAnimAlf/Reiniero-fpcup/releases (defaults to [v2.2.0q](https://github.com/ollydev/setup-lazarus-fpcup/blob/master/action.yml))\n\n---\n\n### Example usage\n\n```yml\nname: Test\non: push\njobs:\n  test:\n    name: ${{ matrix.config.name }}\n    runs-on: ${{ matrix.config.os }}\n    defaults:\n      run:\n        shell: bash\n    strategy:\n      fail-fast: false\n      matrix:\n        config:            \n          - name: Windows 64\n            os: windows-latest\n            args: --os=win64 --cpu=x86_64\n            \n          - name: Windows 32  \n            os: windows-latest\n            args: --os=win32 --cpu=i386\n\n          - name: Linux 64\n            os: ubuntu-latest\n            args: --os=linux --cpu=x86_64\n            \n          - name: Linux (aarch64)  \n            os: ubuntu-latest\n            args: --os=linux --cpu=aarch64\n            \n          - name: MacOS 64\n            os: macos-latest\n            args: --os=darwin --cpu=x86_64 --widgetset=cocoa\n \n          - name: MacOS (aarch64)\n            os: macos-latest\n            args: --os=darwin --cpu=aarch64 --widgetset=cocoa \n            \n    steps:\n      - name: Install Lazarus\n        uses: ollydev/setup-lazarus-fpcup@v3.3\n        with:\n          laz: lazarus_2_2_4\n          fpc: release_3_2_2\n          # Commit SHA example\n          # laz: 537f43754ca77e39f15839299b9f7059e39f90dd\n          # fpc: 3f7bf0fd70b339a43889898efa59af4fec33ea84         \n      \n      - uses: actions/checkout@v3.1.0      \n      \n      - name: Build Test\n        run: |\n          lazbuild ${{ matrix.config.args }} test_lazarus.lpi\n          \n      - name: Run Test\n        if: matrix.config.name != 'Linux (aarch64)' \u0026\u0026 matrix.config.name != 'MacOS (aarch64)' # cross compiled, cannot run on runner\n        run: |\n          ./test\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Follydev%2Fsetup-lazarus-fpcup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Follydev%2Fsetup-lazarus-fpcup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Follydev%2Fsetup-lazarus-fpcup/lists"}