Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions ci/pipelines/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ groups:
- name: auto-bumps
jobs:
- bump-deps
- bump-golang-deps
- bump-bosh-agent
#@ for blobstore_type in data.values.blobstore_types:
- bump-bosh-blobstore-(@= blobstore_type @)
Expand Down Expand Up @@ -765,6 +766,43 @@ jobs:
repository: bosh-linux-stemcell-builder
rebase: true

- name: bump-golang-deps
plan:
- get: weekly
trigger: true
- get: bosh-stemcells-ci
- get: bosh-linux-stemcell-builder
- get: bosh-integration-image
- get: golang-release
- task: bump-deps
file: golang-release/ci/tasks/shared/bump-deps.yml
input_mapping:
input_repo: bosh-linux-stemcell-builder
output_mapping:
output_repo: bosh-linux-stemcell-builder
params:
SOURCE_PATH: acceptance-tests/
- task: acceptance-tests-dry-run
image: bosh-integration-image
config:
platform: linux
inputs:
- name: bosh-linux-stemcell-builder
run:
path: /bin/bash
args:
- -c
- |
set -eu -o pipefail
cd bosh-linux-stemcell-builder/acceptance-tests/
go run github.com/onsi/ginkgo/v2/ginkgo run -r --dry-run .
outputs:
- name: os-image-stemcell-builder-dockerfile
- put: bosh-linux-stemcell-builder-push
params:
repository: bosh-linux-stemcell-builder
rebase: true

- name: bump-bosh-agent
plan:
- get: bosh-agent
Expand Down Expand Up @@ -1081,6 +1119,12 @@ resources:
source:
uri: https://github.com/cloudfoundry/bosh-package-ruby-release.git

- name: golang-release
type: git
source:
uri: https://github.com/cloudfoundry/bosh-package-golang-release.git
branch: main

- name: ubuntu_base
type: registry-image
source:
Expand Down
Loading