{"id":44771063,"url":"https://github.com/verifyica-team/pipeliner","last_synced_at":"2026-02-16T05:18:23.772Z","repository":{"id":263166593,"uuid":"883954488","full_name":"verifyica-team/pipeliner","owner":"verifyica-team","description":"Tool to run pipelines locally (similar to GitHub actions) ","archived":false,"fork":false,"pushed_at":"2026-02-01T20:48:10.000Z","size":1519,"stargazers_count":4,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-02T04:42:04.570Z","etag":null,"topics":["automation","build-tool","cicd","pipeline","workflow"],"latest_commit_sha":null,"homepage":"https://github.com/verifyica-team/pipeliner","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/verifyica-team.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","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":"DCO.md","cla":null}},"created_at":"2024-11-05T21:49:45.000Z","updated_at":"2026-01-26T22:24:11.000Z","dependencies_parsed_at":"2024-11-16T17:28:49.971Z","dependency_job_id":"53eadb87-0cdc-4a4b-8ad5-f6c5ddc576f0","html_url":"https://github.com/verifyica-team/pipeliner","commit_stats":null,"previous_names":["verifyica-team/pipeliner"],"tags_count":67,"template":false,"template_full_name":null,"purl":"pkg:github/verifyica-team/pipeliner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/verifyica-team%2Fpipeliner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/verifyica-team%2Fpipeliner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/verifyica-team%2Fpipeliner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/verifyica-team%2Fpipeliner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/verifyica-team","download_url":"https://codeload.github.com/verifyica-team/pipeliner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/verifyica-team%2Fpipeliner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29500826,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T03:57:51.541Z","status":"ssl_error","status_checked_at":"2026-02-16T03:55:59.854Z","response_time":115,"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":["automation","build-tool","cicd","pipeline","workflow"],"created_at":"2026-02-16T05:18:22.962Z","updated_at":"2026-02-16T05:18:23.752Z","avatar_url":"https://github.com/verifyica-team.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build](https://github.com/verifyica-team/pipeliner/actions/workflows/build.yaml/badge.svg)](https://github.com/verifyica-team/pipeliner/actions/workflows/build.yaml) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/b908266740664e8c9985be70babe9262)](https://app.codacy.com/gh/verifyica-team/pipeliner/dashboard?utm_source=gh\u0026utm_medium=referral\u0026utm_content=\u0026utm_campaign=Badge_grade) \u003ca href=\"#\"\u003e\u003cimg src=\"https://img.shields.io/badge/JDK%20compatibility-11+-blue.svg\" alt=\"java 11+\"\u003e\u003c/a\u003e \u003ca href=\"#\"\u003e\u003cimg src=\"https://img.shields.io/badge/license-Apache%202.0-blue.svg\" alt=\"Apache 2.0\"\u003e\u003c/a\u003e\n\n# Verifyica Pipeliner\n\nVerifyica Pipeliner allows you to define and run a local pipeline using a syntax ***similar*** to GitHub actions.\n\n**Pipeliner is not designed to be 100% GitHub Action compatible.**\n\n## Why ?\n\nThere are many scenarios where you need to perform various processing steps during development, system maintenance, or general workflows.\n\nExample:\n\n- patching source files\n- setting up a test environment\n- building a custom zip or tar.gz file\n- common local CI/CD workflows\n- system maintenance tasks\n\n#### Maven \u0026 Gradle\n\nMaven and Gradle ***can*** and ***are*** useful in development environment for Java developers.\n\nDevelopers in other languages use non-Java language specific tools.\n\nMaven and Gradle are not the best tools for system administrators.\n\n#### Bash\n\nA common go to is to use a Bash script(s). Pipeliner uses them for testing.\n\nImplementing logging, exit code checking, etc. is commonly implemented incorrectly and inconsistently.\n\n#### Pipeliner\n\nPipeliner allows a declarative definition of a pipeline(s) using YAML. The exit code of each command is checked, and the pipeline is aborted if a command fails.\n\nDesigning a pipeline(s) using Bash command(s), small purpose-built applications, or small purpose-built shell scripts allows for easier development, reuse, testing, etc.\n\n## Requirements\n\n- Linux\n- Java 11 or later\n\n## Installation\n\n### Installation Script\n\nDownload and run the installation script.\n\nInstall the latest version:\n\n```bash\ncurl -s https://raw.githubusercontent.com/verifyica-team/pipeliner/main/install.sh | bash\n```\n\nInstall a specific version:\n\n```bash\ncurl -s https://raw.githubusercontent.com/verifyica-team/pipeliner/main/install.sh | bash -s -- \u003crelease\u003e\n```\n\n**Notes**\n\n- The installation script requires\n  - curl\n  - tar\n  - jq\n\n### Manual Installation\n\nDownload the zip or tar.gz file from the [releases](https://github.com/verifyica-team/pipeliner/releases)\n\nZip:\n\n```bash\ncd \u003cPROJECT DIRECTORY\u003e\nunzip verifyica-pipeliner.zip\n./pipeliner --info\n```\n\nTarball:\n\n```bash\ncd \u003cPROJECT DIRECTORY\u003e\ntar -xf verifyica-pipeliner.tar.gz\n./pipeliner --info\n```\n\n# Usage\n\nUsage is similar to GitHub actions, but not 100% compatible.\n\nThe easiest way to get started is to look at the [QUICK_START](QUICK_START.md) guide.\n\n# Building\n\nJava 11 or later is required to build.\n\n```bash\ngit clone https://github.com/verifyica-team/pipeliner\ncd pipeliner\n./mvnw clean verify\n```\n\n## Packaging\n\nThe `OUTPUT` directory will contain the release packages and associated SHA1 checksum files.\n\n- `install.sh`\n- `install.sh.sha1`\n- `verifiyica-piperliner.zip`\n- `verifiyica-piperliner.zip.sha1`\n- `verifyica-piperliner.tar.gz`\n- `verifyica-piperliner.tar.gz.sha1`\n\n**Notes**\n\n- Packaging requires `zip` and `tar` to be installed\n\n# Design\n\nSee [DESIGN](DESIGN.md) for details on the design of Pipeliner.\n\n# Contributing\n\nSee [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n# License\n\nApache License 2.0, see [LICENSE](LICENSE).\n\n# DCO\n\nSee [DCO](DCO.md) for details.\n\n# Support\n\nIf you like the project, please give it a star.\n\nStars are very much appreciated. It helps others find the project.\n\n---\n\n![YourKit logo](https://www.yourkit.com/images/yklogo.png)\n\n[YourKit](https://www.yourkit.com/) supports open source projects with innovative and intelligent tools for monitoring and profiling Java and .NET applications.\n\nYourKit is the creator of \u003ca href=\"https://www.yourkit.com/java/profiler/\"\u003eYourKit Java Profiler\u003c/a\u003e,\n\u003ca href=\"https://www.yourkit.com/dotnet-profiler/\"\u003eYourKit .NET Profiler\u003c/a\u003e,\nand \u003ca href=\"https://www.yourkit.com/youmonitor/\"\u003eYourKit YouMonitor\u003c/a\u003e.\n\n---\n\nCopyright (C) Pipeliner project authors and contributors\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fverifyica-team%2Fpipeliner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fverifyica-team%2Fpipeliner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fverifyica-team%2Fpipeliner/lists"}