2022-11-30 20:30:32 +00:00
|
|
|
name: Continuous Integration (PR)
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
# run CI on pull requests to master or a release branch
|
|
|
|
branches:
|
|
|
|
- master
|
2023-04-24 19:53:29 +00:00
|
|
|
- 'release/**'
|
2022-11-30 20:30:32 +00:00
|
|
|
- 'releases/**'
|
|
|
|
# run default ci checks against current PR
|
|
|
|
jobs:
|
|
|
|
default:
|
|
|
|
uses: ./.github/workflows/ci-default.yml
|
2023-04-04 21:18:22 +00:00
|
|
|
rocksdb:
|
|
|
|
uses: ./.github/workflows/ci-rocksdb-build.yml
|
2022-12-15 19:45:18 +00:00
|
|
|
post-pipeline-metrics:
|
|
|
|
uses: ./.github/workflows/metric-pipeline.yml
|
|
|
|
if: always() # always run so we metric failures and successes
|
|
|
|
with:
|
|
|
|
aws-region: us-east-1
|
2022-12-15 22:07:54 +00:00
|
|
|
metric-name: kava.releases.pr
|
|
|
|
namespace: Kava/ContinuousIntegration
|
2022-12-15 19:45:18 +00:00
|
|
|
secrets: inherit
|
2022-12-15 22:07:54 +00:00
|
|
|
needs: [default]
|