Skip to content

v6.2.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 27 Dec 05:55
· 22 commits to refs/heads/master since this release

v6.2.0

Support exporting CI data to GCS 🎉

If you want to use exporter.gcs, you have to create a bucket that CIAnalyzer will export data to.

BigQuery can also read JSONL formatted data stored in GCS as external tables, so it is useful to save data to GCS instead of exporting directly to a BigQuery table. In that case, it is recommended to save data in a path that includes the DATE to be recognized as a Hive partition for efficient querying from BigQuery.

see: https://cloud.google.com/bigquery/docs/hive-partitioned-queries

CIAnalyzer can save data to a path with date partitions by specifying a prefixTemplate in the configuration file as follows:

exporter:
  gcs:
    project: $GCP_PROJECT_ID
    bucket: $BUCKET_NAME
    prefixTemplate: ci_analyzer/{reportType}/dt={YYYY}-{MM}-{DD}/

Changes

Features

Dependencies

5 changes

Internal improvement

  • Pin action versions and add permissions to workflows @Kesin11 (#1378)