-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add a script that invoke regen (#1432)
This will be called from a cron job. Script should land before backing config. Related cl: 427492527
- v0.223.0
- v0.222.0
- v0.221.0
- v0.220.0
- v0.219.0
- v0.218.0
- v0.217.0
- v0.216.0
- v0.215.0
- v0.214.0
- v0.213.0
- v0.212.0
- v0.211.0
- v0.210.0
- v0.209.0
- v0.208.0
- v0.207.0
- v0.206.0
- v0.205.0
- v0.204.0
- v0.203.0
- v0.202.0
- v0.201.0
- v0.200.0
- v0.199.0
- v0.198.0
- v0.197.0
- v0.196.0
- v0.195.0
- v0.194.0
- v0.193.0
- v0.192.0
- v0.191.0
- v0.190.0
- v0.189.0
- v0.188.0
- v0.187.0
- v0.186.0
- v0.185.0
- v0.184.0
- v0.183.0
- v0.182.0
- v0.181.0
- v0.180.0
- v0.179.0
- v0.178.0
- v0.177.0
- v0.176.1
- v0.176.0
- v0.175.0
- v0.174.0
- v0.173.0
- v0.172.0
- v0.171.0
- v0.170.0
- v0.169.0
- v0.168.0
- v0.167.0
- v0.166.0
- v0.165.0
- v0.164.0
- v0.163.0
- v0.162.0
- v0.161.0
- v0.160.0
- v0.159.0
- v0.158.0
- v0.157.0
- v0.156.0
- v0.155.0
- v0.154.0
- v0.153.0
- v0.152.0
- v0.151.0
- v0.150.0
- v0.149.0
- v0.148.0
- v0.147.0
- v0.146.0
- v0.145.0
- v0.144.0
- v0.143.0
- v0.142.0
- v0.141.0
- v0.140.0
- v0.139.0
- v0.138.0
- v0.137.0
- v0.136.0
- v0.135.0
- v0.134.0
- v0.133.0
- v0.132.0
- v0.131.0
- v0.130.0
- v0.129.0
- v0.128.0
- v0.127.0
- v0.126.0
- v0.125.0
- v0.124.0
- v0.123.0
- v0.122.0
- v0.121.0
- v0.120.0
- v0.119.0
- v0.118.0
- v0.117.0
- v0.116.0
- v0.115.0
- v0.114.0
- v0.113.0
- v0.112.0
- v0.111.0
- v0.110.0
- v0.109.0
- v0.108.0
- v0.107.0
- v0.106.0
- v0.105.0
- v0.104.0
- v0.103.0
- v0.102.0
- v0.101.0
- v0.100.0
- v0.99.0
- v0.98.0
- v0.97.0
- v0.96.0
- v0.95.0
- v0.94.0
- v0.93.0
- v0.92.0
- v0.91.0
- v0.90.0
- v0.89.0
- v0.88.0
- v0.87.0
- v0.86.0
- v0.85.0
- v0.84.0
- v0.83.0
- v0.82.0
- v0.81.0
- v0.80.0
- v0.79.0
- v0.78.0
- v0.77.0
- v0.76.0
- v0.75.0
- v0.74.0
- v0.73.0
- v0.72.0
- v0.71.0
- v0.70.0
- v0.69.0
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
# Copyright 2022 Google LLC. | ||
# Use of this source code is governed by a BSD-style | ||
# license that can be found in the LICENSE file. | ||
|
||
# Fail on any error | ||
set -eo pipefail | ||
|
||
export GITHUB_ACCESS_TOKEN=$(cat $KOKORO_KEYSTORE_DIR/73713_yoshi-automation-github-key) | ||
|
||
# Display commands being run | ||
set -x | ||
|
||
# cd to project dir on Kokoro instance | ||
cd github/google-api-go-client | ||
export DISCOVERY_DIR=$(pwd) | ||
|
||
go run google.golang.org/api/internal/kokoro/discogen |