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
15 changes: 9 additions & 6 deletions .github/workflows/resume-ci-vms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,13 @@ jobs:
fi
done

- name: checkout app-autoscaler-release
- name: checkout app-autoscaler
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5

- name: print files DEBUG
run: |
pushd "/${GITHUB_WORKSPACE}/"; ls; popd

- name: install devbox
uses: jetify-com/devbox-install-action@a0d2d53632934ae004f878c840055956d9f741b0 # v0.14.0
with:
Expand All @@ -49,8 +53,7 @@ jobs:
# after suspension and resumption, backend VMs become unreachable by the load balancer and require recreation.
- name: recreate router VM
run: |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2086:info:1:7: Double quote to prevent globbing and word splitting [shellcheck]

pushd "${GITHUB_WORKSPACE}/app-autoscaler-env-bbl-state/bbl-state" > /dev/null
eval "$(bbl print-env)"
popd > /dev/null

bosh recreate router -d cf -n
pushd ${GITHUB_WORKSPACE}
eval "$("scripts/bbl-print-env.sh" "${GITHUB_WORKSPACE}/app-autoscaler-env-bbl-state/bbl-state")"
bosh recreate router -d cf -n
popd
Loading