Skip to content

Commit

Permalink
Create cloudbuild to run website sanity in the cloud. (#4614)
Browse files Browse the repository at this point in the history
  • Loading branch information
keyurva authored Sep 11, 2024
1 parent b62150b commit 946cf68
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions build/ci/cloudbuild.website_sanity.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Copyright 2023 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
#
# https://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.

steps:
- id: website_sanity
name: gcr.io/datcom-ci/webdriver-chrome:2024-06-05
entrypoint: /bin/bash
args:
- -c
- |
./run_website_sanity.sh $_WEBSITE_DOMAIN
substitutions:
_WEBSITE_DOMAIN: datacommons.org

timeout: 14400s

options:
machineType: "E2_HIGHCPU_32"

0 comments on commit 946cf68

Please sign in to comment.