cnidarium: prefix queries over substores are hazardous #9173
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: Smoke Test | |
on: | |
pull_request: | |
# Don't run Rust tests if only docs changed. | |
paths-ignore: | |
- 'docs/**' | |
jobs: | |
smoke_test: | |
runs-on: buildjet-16vcpu-ubuntu-2204 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
environment: smoke-test | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Load rust cache | |
uses: astriaorg/[email protected] | |
- name: Install cometbft binary | |
run: ./deployments/scripts/install-cometbft | |
- name: Install process-compose | |
run: >- | |
sh -c "$(curl --location https://raw.githubusercontent.com/F1bonacc1/process-compose/main/scripts/get-pc.sh)" -- | |
-d -b ~/bin | |
- name: Install grpcurl | |
run: ./deployments/scripts/install-grpcurl | |
- name: Run the smoke test suite | |
run: | | |
export PATH="$HOME/bin:$PATH" | |
./deployments/scripts/smoke-test.sh | |
- name: Display smoke-test logs | |
if: always() | |
run: cat deployments/logs/smoke-*.log |