Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions ci/pipelines/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1060,6 +1060,7 @@ resources:
branch: (@= data.values.stemcell_details.branch @)
paths:
- ci
- .ruby-version
uri: https://github.com/cloudfoundry/bosh-linux-stemcell-builder

- name: bats
Expand Down
2 changes: 1 addition & 1 deletion ci/pipelines/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ stemcell_details:
os_version: "22.04"
os_name: ubuntu-jammy
os_short_name: jammy
subnet_int: "22" #! use last two digits of release year: ex 2010 -> 10
use_efi: false
include_iaas: [
{iaas: alicloud, hypervisor: kvm},
Expand All @@ -21,7 +22,6 @@ stemcell_details:
{iaas: aws, hypervisor: xen-hvm},
{iaas: google, hypervisor: kvm},
]
subnet_int: "22" #! use last two digits of release year: ex 2000 -> 20

blobstore_types:
- dav
Expand Down
2 changes: 1 addition & 1 deletion ci/tasks/build-docker-args.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ yq_cli_url="$(curl -s https://api.github.com/repos/mikefarah/yq/releases/latest
ruby_install_url="$(curl -s https://api.github.com/repos/postmodern/ruby-install/releases/latest \
| jq -r '.assets[] | select(.name | endswith ("tar.gz")) | .browser_download_url')"

ruby_version="$(cat "${REPO_PARENT}/bosh-linux-stemcell-builder/.ruby-version")"
ruby_version="$(cat "${REPO_ROOT}/.ruby-version")"
gem_home="/usr/local/bundle"

cat << EOF > "${REPO_PARENT}/docker-build-args/docker-build-args.json"
Expand Down
Loading