chore: temp fix for failing unit teses in service management #10028
Workflow file for this run
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
# Copyright 2022 Google LLC | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# Github action job to test core java library features on | |
# downstream client libraries before they are released. | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
name: versions check | |
jobs: | |
unmanaged-versions-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: ./generation/check_non_release_please_versions.sh | |
# For Release Please pull requests, the artifacts being published must not | |
# have the duplicate versions in Maven Central | |
existing-versions-check: | |
runs-on: ubuntu-latest | |
if: | | |
github.repository_owner == 'googleapis' && github.head_ref == 'release-please--branches--main' && | |
(github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'autorelease: snapshot')) | |
steps: | |
- run: sudo apt-get update -y | |
- run: sudo apt-get install libxml2-utils | |
- uses: actions/checkout@v3 | |
- run: ./generation/check_existing_release_versions.sh |