Skip to content

Commit

Permalink
chore: change file path in checks (#11269)
Browse files Browse the repository at this point in the history
* chore: change file path in checks

* suppress pulling progress
  • Loading branch information
JoeWang1127 authored Oct 28, 2024
1 parent f844199 commit 672c416
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,12 @@ jobs:
run: |
docker run \
--rm \
--quiet \
-u "$(id -u):$(id -g)" \
-v "$(pwd):${workspace_name}" \
--entrypoint python \
gcr.io/cloud-devrel-public-resources/java-library-generation:"${library_generation_image_tag}" \
/src/cli/entry_point.py validate-generation-config
/src/library_generation/cli/entry_point.py validate-generation-config
env:
library_generation_image_tag: 2.49.0
workspace_name: /workspace
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/generated_files_sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ jobs:
run: |
docker run \
--rm \
--quiet \
-u "$(id -u):$(id -g)" \
-v "$(pwd):/workspace" \
--entrypoint python \
gcr.io/cloud-devrel-public-resources/java-library-generation:"${library_generation_image_tag}" \
/src/cli/generate_monorepo_root_pom.py \
/src/library_generation/cli/generate_monorepo_root_pom.py \
generate \
--repository-path=/workspace
- name: Fail if there's any difference
Expand All @@ -52,11 +53,12 @@ jobs:
run: |
docker run \
--rm \
--quiet \
-u "$(id -u):$(id -g)" \
-v "$(pwd):/workspace" \
--entrypoint python \
gcr.io/cloud-devrel-public-resources/java-library-generation:"${library_generation_image_tag}" \
/src/cli/generate_monorepo_gapic_bom.py \
/src/library_generation/cli/generate_monorepo_gapic_bom.py \
generate \
--repository-path=/workspace \
--versions-file=/workspace/versions.txt
Expand Down

0 comments on commit 672c416

Please sign in to comment.