feat(query): Adding support for optimizing raw metric to agg metric in HQE #2588
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: CI | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop, integration, main, feat-index-rust ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
cassandra: | |
image: cassandra | |
ports: | |
- 9042:9042 | |
options: --health-cmd "cqlsh --debug" --health-interval 5s --health-retries 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Set up Scala and sbt | |
uses: olafurpg/setup-scala@v12 | |
with: | |
java-version: '11' | |
- name: Install Rust Toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
components: rustfmt, clippy | |
target: x86_64-apple-darwin, aarch64-apple-darwin, aarch64-unknown-linux-gnu | |
cache-workspaces: "core/src/rust -> target" | |
toolchain: 1.83.0 | |
- name: Install cargo-zigbuild | |
run: pip install cargo-zigbuild | |
- name: Run tests | |
run: .github/workflows/runtests.sh | |
- name: Coverage Reports | |
uses: actions/upload-artifact@v4 | |
with: | |
name: scoverage-report | |
path: target/scala-*/scoverage-report/** |