{"id":38437309,"url":"https://github.com/ollydev/setup-lazarus","last_synced_at":"2026-01-17T04:31:00.708Z","repository":{"id":88052372,"uuid":"369692219","full_name":"ollydev/setup-lazarus","owner":"ollydev","description":"Github action which can install Lazarus (and FPC) from sourceforge releases or build using fpclazup.","archived":false,"fork":false,"pushed_at":"2026-01-10T02:54:00.000Z","size":1663,"stargazers_count":4,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-10T21:49:28.848Z","etag":null,"topics":["fpc","github-action","lazarus"],"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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-05-22T01:44:38.000Z","updated_at":"2026-01-10T02:54:04.000Z","dependencies_parsed_at":"2026-01-08T05:07:04.748Z","dependency_job_id":null,"html_url":"https://github.com/ollydev/setup-lazarus","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/ollydev/setup-lazarus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ollydev%2Fsetup-lazarus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ollydev%2Fsetup-lazarus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ollydev%2Fsetup-lazarus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ollydev%2Fsetup-lazarus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ollydev","download_url":"https://codeload.github.com/ollydev/setup-lazarus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ollydev%2Fsetup-lazarus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28495097,"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","github-action","lazarus"],"created_at":"2026-01-17T04:31:00.610Z","updated_at":"2026-01-17T04:31:00.691Z","avatar_url":"https://github.com/ollydev.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Test](https://github.com/ollydev/setup-lazarus/actions/workflows/test.yml/badge.svg)](https://github.com/ollydev/setup-lazarus/actions/workflows/test.yml)\n\nGithub action which can install Lazarus (and FPC) from sourceforge releases or build using fpclazup.\n\n----\n**Example using Lazarus SourceForge releases:**\n```yml\non: [push, pull_request]\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          - os: windows-latest\n            name: Windows 64\n            laz-url: https://sourceforge.net/projects/lazarus/files/Lazarus Windows 64 bits/Lazarus 4.2/lazarus-4.2-fpc-3.2.2-win64.exe\n            \n          - os: windows-latest\n            name: Windows 32\n            laz-url: https://sourceforge.net/projects/lazarus/files/Lazarus Windows 32 bits/Lazarus 4.2/lazarus-4.2-fpc-3.2.2-win32.exe\n\n          - os: ubuntu-latest\n            name: Linux 64\n            laz-url: https://sourceforge.net/projects/lazarus/files/Lazarus Linux amd64 DEB/Lazarus 4.2/lazarus-project_4.2.0-0_amd64.deb\n            fpc-url: |\n              https://sourceforge.net/projects/lazarus/files/Lazarus Linux amd64 DEB/Lazarus 4.2/fpc-laz_3.2.2-210709_amd64.deb\n              https://sourceforge.net/projects/lazarus/files/Lazarus Linux amd64 DEB/Lazarus 4.2/fpc-src_3.2.2-210709_amd64.deb\n            \n          - os: macos-latest\n            name: MacOS 64\n            laz-url: https://sourceforge.net/projects/lazarus/files/Lazarus macOS x86-64/Lazarus 4.2/lazarus-darwin-x86_64-4.2.zip\n            fpc-url: https://sourceforge.net/projects/lazarus/files/Lazarus macOS x86-64/Lazarus 4.2/fpc-3.2.2.intelarm64-macosx.dmg\n        \n    steps:\n      - name: Install Lazarus\n        uses: ollydev/setup-lazarus@v4\n        with:\n          laz-url: ${{ matrix.config.laz-url }}\n          fpc-url: ${{ matrix.config.fpc-url }}\n      \n      - name: Test Installation\n        run: |\n          lazbuild --version\n```\n----\n**Example using fpclazup to build Lazarus and FPC:**\n```yml\non: [push, pull_request]\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          - os: windows-latest\n            name: Windows 64\n            args: \"\"\n            fpclazup-url: https://github.com/LongDirtyAnimAlf/Reiniero-fpcup/releases/download/v2.4.0g/fpclazup-x86_64-win64.exe\n            fpclazup-lazcommit: 98f9c7a7a102139e43b39050ebbb5c48d805f59f # 4.4\n            fpclazup-fpccommit: de30ac10d4f228c5d4915c49d48715063ea55787 # trunk (~3.3)\n\n          - os: windows-latest\n            name: Windows 32\n            args: \"--cpu=i386\"\n            fpclazup-url: https://github.com/LongDirtyAnimAlf/Reiniero-fpcup/releases/download/v2.4.0g/fpclazup-x86_64-win64.exe\n            fpclazup-lazcommit: 98f9c7a7a102139e43b39050ebbb5c48d805f59f # 4.4\n            fpclazup-fpccommit: de30ac10d4f228c5d4915c49d48715063ea55787 # trunk (~3.3)\n\n          - os: ubuntu-latest\n            name: Linux 64\n            args: \"\"\n            fpclazup-url: https://github.com/LongDirtyAnimAlf/Reiniero-fpcup/releases/download/v2.4.0g/fpclazup-x86_64-linux\n            fpclazup-lazcommit: 98f9c7a7a102139e43b39050ebbb5c48d805f59f # 4.4\n            fpclazup-fpccommit: de30ac10d4f228c5d4915c49d48715063ea55787 # trunk (~3.3)\n\n          - os: macos-26\n            name: MacOS arm64\n            args: \"\"\n            fpclazup-url: https://github.com/LongDirtyAnimAlf/Reiniero-fpcup/releases/download/v2.4.0g/fpclazup-aarch64-darwin\n            fpclazup-lazcommit: 98f9c7a7a102139e43b39050ebbb5c48d805f59f # 4.4\n            fpclazup-fpccommit: de30ac10d4f228c5d4915c49d48715063ea55787 # trunk (~3.3)\n        \n    steps:\n      - name: Install Lazarus\n        uses: ollydev/setup-lazarus@v4\n        with:\n          fpclazup-url: ${{ matrix.config.fpclazup-url }}\n          fpclazup-lazcommit: ${{ matrix.config.fpclazup-lazcommit }}\n          fpclazup-fpccommit: ${{ matrix.config.fpclazup-fpccommit }}\n      \n      - name: Test Installation\n        run: |\n          lazbuild --version\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Follydev%2Fsetup-lazarus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Follydev%2Fsetup-lazarus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Follydev%2Fsetup-lazarus/lists"}