Skip to content

build(deps): bump github.com/cloudfoundry/bosh-utils from 0.0.630 to 0.0.633 #365

build(deps): bump github.com/cloudfoundry/bosh-utils from 0.0.630 to 0.0.633

build(deps): bump github.com/cloudfoundry/bosh-utils from 0.0.630 to 0.0.633 #365

Workflow file for this run

name: GCS Integration Tests
on:
workflow_dispatch:
workflow_call:
pull_request_target:
push:
branches:
- "main"
concurrency:
group: gcs-integration
cancel-in-progress: false
jobs:
gate:
name: Approval gate (fork PRs only)
runs-on: ubuntu-latest
if: >
github.event_name == 'pull_request_target' &&
github.event.pull_request.head.repo.full_name != github.repository
environment: fork-pr-integration-test
steps:
- run: echo "Fork PR approved, proceeding with integration tests"
gcs-integration-fast-tests:
name: GCS Integation Fast Tests
runs-on: ubuntu-latest
needs: [gate]
if: always() && (needs.gate.result == 'success' || needs.gate.result == 'skipped')
steps:
- name: Checkout code
uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
allow-unsafe-pr-checkout: true
- name: Set up Go
uses: actions/setup-go@v7
with:
go-version-file: go.mod
- name: Install Ginkgo
run: go install github.com/onsi/ginkgo/v2/ginkgo@latest
- name: Setup GCS Test Environment
run: |
echo "${{ secrets.GCP_SERVICE_ACCOUNT_BASE64 }}" | base64 -d > /tmp/gcp-key.json
export google_json_key_data="$(cat /tmp/gcp-key.json)"
./.github/scripts/gcs/setup.sh
- name: Run Fast Tests
run: |
echo "${{ secrets.GCP_SERVICE_ACCOUNT_BASE64 }}" | base64 -d > /tmp/gcp-key.json
export google_json_key_data="$(cat /tmp/gcp-key.json)"
export SKIP_LONG_TESTS=yes
./.github/scripts/gcs/run-int.sh
- name: Teardown GCS Test Environment
if: always()
run: |
echo "${{ secrets.GCP_SERVICE_ACCOUNT_BASE64 }}" | base64 -d > /tmp/gcp-key.json
export google_json_key_data="$(cat /tmp/gcp-key.json)"
./.github/scripts/gcs/teardown.sh
gcs-integration-all-tests:
name: GCS Integation All Tests
runs-on: ubuntu-latest
needs: [gate]
if: always() && (needs.gate.result == 'success' || needs.gate.result == 'skipped')
steps:
- name: Checkout code
uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
allow-unsafe-pr-checkout: true
- name: Set up Go
uses: actions/setup-go@v7
with:
go-version-file: go.mod
- name: Install Ginkgo
run: go install github.com/onsi/ginkgo/v2/ginkgo@latest
- name: Setup GCS Test Environment
run: |
echo "${{ secrets.GCP_SERVICE_ACCOUNT_BASE64 }}" | base64 -d > /tmp/gcp-key.json
export google_json_key_data="$(cat /tmp/gcp-key.json)"
./.github/scripts/gcs/setup.sh
- name: Run All Tests
run: |
echo "${{ secrets.GCP_SERVICE_ACCOUNT_BASE64 }}" | base64 -d > /tmp/gcp-key.json
export google_json_key_data="$(cat /tmp/gcp-key.json)"
./.github/scripts/gcs/run-int.sh
- name: Teardown GCS Test Environment
if: always()
run: |
echo "${{ secrets.GCP_SERVICE_ACCOUNT_BASE64 }}" | base64 -d > /tmp/gcp-key.json
export google_json_key_data="$(cat /tmp/gcp-key.json)"
./.github/scripts/gcs/teardown.sh