add new service #61
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
name: TeamCity Services Diff Check | |
permissions: read-all | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/teamcity-services-diff-check.yml' | |
- 'mmv1/third_party/terraform/.teamcity/components/inputs/services_ga.kt' | |
- 'mmv1/third_party/terraform/.teamcity/components/inputs/services_beta.kt' | |
- 'mmv1/products/**' | |
jobs: | |
teamcity-services-diff-check: | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: "Check for New Services" | |
id: services | |
run: | | |
newServices=$(($(git diff --name-only --diff-filter=A origin/main HEAD | grep -P "mmv1/products/.*/product.yaml" | wc -l))) | |
echo "services=$newServices" >> "${GITHUB_OUTPUT}" | |
if [ "$newServices" = "0" ];then | |
echo "No new service found." | |
fi | |
- name: TeamCity Google Provider Generate | |
id: generate | |
if: ${{steps.services.outputs.services != '0'}} | |
uses: ./.github/actions/build-downstream | |
with: | |
repo: 'terraform-provider-google' | |
token: '$GITHUB_TOKEN' | |
- name: TeamCity Google Beta Provider Generate | |
if: steps.generate.outcome == 'success' | |
uses: ./.github/actions/build-downstream | |
with: | |
repo: 'terraform-provider-google-beta' | |
token: '$GITHUB_TOKEN' | |
- name: Checkout Repository | |
if: steps.generate.outcome == 'success' | |
uses: actions/checkout@v4 | |
- name: Check that new services have been added to the TeamCity configuration code | |
if: steps.generate.outcome == 'success' | |
run: | | |
# Create lists of service packages in providers | |
ls provider/google/services > tools/teamcity-diff-check/services_ga.txt | |
ls provider/google-beta/services > tools/teamcity-diff-check/services_beta.txt | |
# Run tool to compare service packages in the providers vs those listed in TeamCity config files | |
cd tools/teamcity-diff-check | |
go run main.go -service_file=services_ga | |
go run main.go -service_file=services_beta |