{"id":51120740,"url":"https://github.com/jenkinsci/tacotruck-plugin","last_synced_at":"2026-06-25T02:00:50.715Z","repository":{"id":320133381,"uuid":"1072355523","full_name":"jenkinsci/tacotruck-plugin","owner":"jenkinsci","description":"Tacotruck jenkins plugin","archived":false,"fork":false,"pushed_at":"2025-10-22T04:21:18.000Z","size":63,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-19T08:41:51.651Z","etag":null,"topics":["automation","junit","testing"],"latest_commit_sha":null,"homepage":"https://plugins.jenkins.io/tacotruck/","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jenkinsci.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","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":"2025-10-08T15:51:56.000Z","updated_at":"2025-10-22T04:10:07.000Z","dependencies_parsed_at":"2025-10-22T06:12:27.591Z","dependency_job_id":"b20e3372-09fc-42d5-80d2-a4775ad1fe4e","html_url":"https://github.com/jenkinsci/tacotruck-plugin","commit_stats":null,"previous_names":["jenkinsci/tacotruck-plugin"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/jenkinsci/tacotruck-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Ftacotruck-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Ftacotruck-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Ftacotruck-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Ftacotruck-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jenkinsci","download_url":"https://codeload.github.com/jenkinsci/tacotruck-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jenkinsci%2Ftacotruck-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34756206,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","junit","testing"],"created_at":"2026-06-25T02:00:49.726Z","updated_at":"2026-06-25T02:00:50.702Z","avatar_url":"https://github.com/jenkinsci.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TacoTruck Jenkins Plugin\n[![GitHub release](https://img.shields.io/github/release/jenkinsci/tacotruck-plugin.svg?label=changelog)](https://github.com/jenkinsci/tacotruck-plugin/releases/latest)\n[![Jenkins Security Scan](https://github.com/jenkinsci/tacotruck-plugin/actions/workflows/jenkins-security-scan.yml/badge.svg)](https://github.com/jenkinsci/tacotruck-plugin/actions/workflows/jenkins-security-scan.yml)\n[![License](https://img.shields.io/github/license/jenkinsci/tacotruck-plugin)](https://github.com/jenkinsci/tacotruck-plugin/blob/master/LICENSE)\n\n\nA Jenkins plugin that provides build step integration with [TacoTruck](https://github.com/testfiesta/tacotruck)\n\n\n## Configuration\n\n### Global Configuration\n\nCurrently, no global configuration is required for this plugin.\n\n### Job Configuration\n\n#### Freestyle Jobs\n\n1. Add a build step \"TacoTruck Integration\"\n2. Configure the following parameters:\n   - **Provider**: Select the provider from the dropdown (currently supported: `testfiesta`)\n   - **Run Name**: A descriptive name for this integration step\n   - **API URL**: The TacoTruck service endpoint URL\n   - **Project**: (Optional) Project identifier\n   - **Credentials**: Select appropriate credentials from the dropdown\n   - **Results Path**: Path to the test results file\n   - **Handle**: username or organization handle\n   - **Source**: (Optional) Source identifier for the test results\n\n#### Pipeline Jobs\n\nUse the `tacotruck` step in your Jenkinsfile with the nodejs buildwrapper:\n\n```groovy\npipeline {\n    agent any\n    tools { nodejs 'Node 20.x' }\n    stages {\n        stage('Submit Test Results') {\n            steps {\n                    tacotruck(\n                        provider: 'testfiesta',\n                        runName: 'My TacoTruck Run',\n                        apiUrl: 'https://staging.api.testfiesta.com',\n                        handle: 'TestHandle',\n                        project: 'testProjectKey',\n                        credentialsId: 'YOUR_CREDENTIALS_ID',\n                        resultsPath: './test-results.xml',\n                        source: 'jenkins-ci'  // Optional: source identifier\n                    )\n            }\n        }\n    }\n}\n```\n\n**Note**: The `tacotruck` step must be wrapped inside a `nodejs` buildwrapper block to ensure npm and npx are available in the PATH.\n\n### Credentials Setup\n\nThis plugin supports both username/password and API token credentials:\n\n1. Go to **Manage Jenkins** → **Manage Credentials**\n2. Add credentials of type:\n   - **Username with password** for basic authentication\n   - **Secret text** for API token authentication\n\n## Requirements\n\n- Jenkins 2.479.3 or later\n- Java 17 or later\n\n## Development\n\n### Building the Plugin\n\n```bash\nmvn clean package\n```\n\n### Running Tests\n\n```bash\nmvn test\n```\n\n### Local Development\n\n```bash\nmvn hpi:run\nmvn hpi:run -Dport=5000 (running on port 5000)\n```\n\nThis will start a Jenkins instance with the plugin loaded at `http://localhost:8080/jenkins`\n\n## Issues and Support\n\nReport issues and feature requests on [GitHub Issues](https://github.com/jenkinsci/tacotruck-plugin/issues).\n\n### Development Setup\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Add tests for new functionality\n5. Ensure all tests pass\n6. Submit a pull request\n\n## License\n\nLicensed under the MIT License. See [LICENSE](LICENSE.md) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjenkinsci%2Ftacotruck-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjenkinsci%2Ftacotruck-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjenkinsci%2Ftacotruck-plugin/lists"}