Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
feat: generate java files for extended_operations.proto (#200)
feat: generate java files for error_reason.proto and localized_text.proto

BigqueryAuditMetadata is being explicitly removed because it is introducing a [circular dependency](https://paste.googleplex.com/5113053075996672) with iam.Policy.
common-protos cannot depend on iam because iam depends on common protos.
This issue needs to be resolved before BigqueryAuditMetadata can be added to the java-common-protos
  • Loading branch information
Neenu1995 committed Aug 26, 2021
1 parent 1def450 commit fec9c81
Show file tree
Hide file tree
Showing 17 changed files with 2,735 additions and 1,202 deletions.
1 change: 1 addition & 0 deletions .github/release-trigger.yml
@@ -0,0 +1 @@
enabled: true
15 changes: 1 addition & 14 deletions .github/workflows/ci.yaml
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [7, 8, 11]
java: [8, 11]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
Expand Down Expand Up @@ -42,19 +42,6 @@ jobs:
java-version: ${{matrix.java}}
- run: java -version
- run: .kokoro/dependencies.sh
linkage-monitor:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 8
- run: java -version
- name: Install artifacts to local Maven repository
run: .kokoro/build.sh
shell: bash
- name: Validate any conflicts with regard to com.google.cloud:libraries-bom (latest release)
uses: GoogleCloudPlatform/cloud-opensource-java/linkage-monitor@v1-linkagemonitor
lint:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion .kokoro/build.sh
Expand Up @@ -115,7 +115,7 @@ fi
# fix output location of logs
bash .kokoro/coerce_logs.sh

if [[ "${ENABLE_BUILD_COP}" == "true" ]]
if [[ "${ENABLE_FLAKYBOT}" == "true" ]]
then
chmod +x ${KOKORO_GFILE_DIR}/linux_amd64/flakybot
${KOKORO_GFILE_DIR}/linux_amd64/flakybot -repo=googleapis/java-common-protos
Expand Down
2 changes: 1 addition & 1 deletion .kokoro/nightly/integration.cfg
Expand Up @@ -22,7 +22,7 @@ env_vars: {
}

env_vars: {
key: "ENABLE_BUILD_COP"
key: "ENABLE_FLAKYBOT"
value: "true"
}

Expand Down
2 changes: 1 addition & 1 deletion .kokoro/nightly/samples.cfg
Expand Up @@ -33,6 +33,6 @@ env_vars: {
}

env_vars: {
key: "ENABLE_BUILD_COP"
key: "ENABLE_FLAKYBOT"
value: "true"
}

0 comments on commit fec9c81

Please sign in to comment.