Update rocksdb version in ci-master workflow #556
Workflow file for this run
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
name: Continuous Integration (PR) | |
on: | |
pull_request: | |
# run CI on pull requests to master or a release branch | |
branches: | |
- master | |
- 'release/**' | |
- 'releases/**' | |
# run default ci checks against current PR | |
jobs: | |
default: | |
uses: ./.github/workflows/ci-default.yml | |
rocksdb: | |
uses: ./.github/workflows/ci-rocksdb-build.yml | |
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 | |
metric-name: kava.releases.pr | |
namespace: Kava/ContinuousIntegration | |
secrets: inherit | |
needs: [default] |