{"id":26059681,"url":"https://github.com/orange-cloudfoundry/ci-buildpack-cached","last_synced_at":"2026-01-05T22:34:34.376Z","repository":{"id":47344552,"uuid":"121443128","full_name":"orange-cloudfoundry/ci-buildpack-cached","owner":"orange-cloudfoundry","description":"Pipeline which creates cached buildpack for cloud foundry when a new version of buildpack has been released and deploys it to storage system","archived":false,"fork":false,"pushed_at":"2024-09-11T09:24:54.000Z","size":44,"stargazers_count":0,"open_issues_count":2,"forks_count":2,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-09-11T12:43:06.309Z","etag":null,"topics":["buildpack","cloudfoundry","concourse"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/orange-cloudfoundry.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}},"created_at":"2018-02-13T22:16:43.000Z","updated_at":"2023-03-29T09:51:58.000Z","dependencies_parsed_at":"2024-03-14T18:46:19.708Z","dependency_job_id":"3c6f3c82-4d64-400a-8183-dc3ff6ebe6ea","html_url":"https://github.com/orange-cloudfoundry/ci-buildpack-cached","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orange-cloudfoundry%2Fci-buildpack-cached","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orange-cloudfoundry%2Fci-buildpack-cached/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orange-cloudfoundry%2Fci-buildpack-cached/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orange-cloudfoundry%2Fci-buildpack-cached/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/orange-cloudfoundry","download_url":"https://codeload.github.com/orange-cloudfoundry/ci-buildpack-cached/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242555533,"owners_count":20148720,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["buildpack","cloudfoundry","concourse"],"created_at":"2025-03-08T13:27:38.774Z","updated_at":"2026-01-05T22:34:29.341Z","avatar_url":"https://github.com/orange-cloudfoundry.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ci-buildpack-cached\n\nPipeline which create cached buildpack for cloud foundry when a new version of buildpack has been released and deploy it to storage system (default to s3).\n\n## Use it on your concourse\n\n**The default pipeline use an s3 on aws as the storage system, see [customize](#customize) section to use different system**\n\n1. clone this repo\n2. Create a `creds.yml` with this content\n\n```yml\ns3_bucket: my_s3_bucket\ns3_access_key_id: my-s3-access-key-id\ns3_secret_access_key: my-s3-access-key\ngithub-access-token: my-github-token # this is needed only for java buildpack which has different build system\n```\n3. Log to concourse (e.g.: `fly -t target login -c https://my.concourse.ci/`)\n4. Send the pipeline: `fly -t target set-pipeline -c pipeline.yml -p cached-buildpacks-creation -l creds.yml`\n5. Unpause it: `fly -t target up -p cached-buildpacks-creation`\n\n## Customize\n\nThere is some operators files which has been provided for this pipeline.\n\nTo use them, you will need the [bosh cli v2](https://bosh.io/docs/cli-v2.html) for its command `interpolate`.\n\n### Add slack notification\n\nAdd notification about failure and success when a deploy has been triggered.\n\n**Command**: `bosh interpolate pipeline.yml -o operators/slack-notify.yml`\n\n**Credentials**:\n- `slack-hook-url`: The webhook URL as provided by Slack or Mattermost.\n\n### Use a custom s3\n\nUse a different s3 endpoint to send your cached buildpack (default on AWS S3).\n\n**Command**: `bosh interpolate pipeline.yml -o operators/custom-s3.yml`\n\n**Credentials**:\n- `s3_endpoint`: New s3 endpoint.\n\n### Use artifactory as the storage system\n\nUse artifactory instead of s3 to store your cached buildpack.\n\n**Command**: `bosh interpolate pipeline.yml -o operators/artifactory.yml`\n\n**Credentials**:\n- `artifactory-url`: Url to Artifactory.\n- `artifactory-username`: Artifactory username to push your buildpack.\n- `artifactory-password`: Artifactory password to push your buildpack.\n\n### Add trigger all jobs \n\nAdd a job to trigger all other jobs\n\n**Command**: `bosh interpolate pipeline.yml -o operators/add-trigger-all-jobs.yml`\n\n### Detect buildpacks previous versions  \n\nBy default, concourse only detects latest versions of buildpacks, use this operator to detect previous version.\n\n**Command**: `bosh interpolate pipeline.yml -o operators/detect-previous-versions.yml`\n\n\n**Credentials**:\n- `concourse-url`: Url to Concourse.\n- `concourse-username`: Concourse username to allow job triggering.\n- `concourse-password`: Concourse password to allow job triggering.\n- `concourse-insecure`: Skip SSL certificate checks \n- `go-buildpack-version`: Check buildpack from this version \n- `java-buildpack-version`: Check buildpack from this version\n- `dotnet-core-buildpack-version`: Check buildpack from this version\n- `binary-buildpack-version`: Check buildpack from this version \n- `nodejs-buildpack-version`: Check buildpack from this version \n- `php-buildpack-version`: Check buildpack from this version \n- `python-buildpack-version`: Check buildpack from this version \n- `ruby-buildpack-version`: Check buildpack from this version \n- `staticfile-buildpack-version`: Check buildpack from this version \n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forange-cloudfoundry%2Fci-buildpack-cached","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Forange-cloudfoundry%2Fci-buildpack-cached","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forange-cloudfoundry%2Fci-buildpack-cached/lists"}