-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c00ea7
commit acb88e9
Showing
3 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Acceptance Tests - Broker | ||
on: | ||
pull_request: | ||
types: [ opened, labeled, synchronize ] | ||
|
||
concurrency: | ||
group: "${{ github.workflow }}/${{ github.ref }}" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
acceptance_tests_reusable: | ||
name: " " # Whitespace name looks nicest on Github UI | ||
uses: ./.github/workflows/acceptance_tests_reusable.yaml | ||
with: | ||
deployment_name: "autoscaler-mta-${{ github.event.pull_request.number }}" | ||
deploy_apps: "true" | ||
secrets: | ||
bbl_ssh_key: "${{ secrets.BBL_SSH_KEY }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Acceptance Tests Cleanup (Broker) | ||
on: | ||
pull_request: | ||
types: [closed] | ||
env: | ||
PR_NUMBER: "${{ github.event.pull_request.number }}" | ||
DEPLOYMENT_NAME: "autoscaler-mta-${{ github.event.pull_request.number }}" | ||
|
||
jobs: | ||
deployment_cleanup: | ||
name: Cleanup deployments | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: app-autoscaler-release | ||
ref: main | ||
|
||
- uses: ./app-autoscaler-release/.github/actions/setup-environment | ||
with: | ||
ssh-key: ${{ secrets.BBL_SSH_KEY }} | ||
|
||
- name: "clean up" | ||
shell: bash | ||
run: | | ||
#! /usr/bin/env bash | ||
set -eu -o pipefail | ||
# The subsequent assignments are needed *HERE* because of: | ||
# <https://github.com/actions/runner/issues/2058> or | ||
# <https://github.com/actions/checkout/issues/785> | ||
export BBL_STATE_PATH="${GITHUB_WORKSPACE}/bbl/bbl-state" | ||
declare -r AUTOSCALER_DIR="${GITHUB_WORKSPACE}/app-autoscaler-release" | ||
make --directory="${AUTOSCALER_DIR}" deploy-cleanup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters