add custom metric logic #263
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: Lints-Tests | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: | |
jobs: | |
test-os: | |
name: test ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu] | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust | |
run: rustup override set stable && rustup update | |
- name: Install clippy | |
run: rustup component add clippy | |
- name: Cache Rust | |
uses: Swatinem/rust-cache@v2 | |
- name: Start kafka and postgres | |
run: docker compose -f "docker-compose.yml" up -d --build | |
- name: Wait for kafka until it is ready | |
run: | | |
while ! docker exec scouter_server_kafka kafka-topics --bootstrap-server kafka:29092 --list; do | |
sleep 5 | |
done | |
- name: Wait for postgres until it is ready | |
run: | | |
while ! docker exec scouter_server_db pg_isready -U postgres; do | |
sleep 5 | |
done | |
- name: Test | |
run: | | |
make format | |
make lints | |
make test | |
env: | |
RUST_BACKTRACE: 1 | |
- name: Stop Containers | |
if: always() | |
run: docker compose -f "docker-compose.yml" down | |
test-kafka-rabbitmq: | |
needs: test-os | |
name: test kafka | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu] | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust | |
run: rustup override set stable && rustup update | |
- name: Install clippy | |
run: rustup component add clippy | |
- name: Cache Rust | |
uses: Swatinem/rust-cache@v2 | |
- name: Start kafka and postgres | |
run: docker compose -f "docker-compose.yml" up -d --build | |
- name: Wait for kafka until it is ready | |
run: | | |
while ! docker exec scouter_server_kafka kafka-topics --bootstrap-server kafka:29092 --list; do | |
sleep 5 | |
done | |
- name: Wait for postgres until it is ready | |
run: | | |
while ! docker exec scouter_server_db pg_isready -U postgres; do | |
sleep 5 | |
done | |
- name: Test | |
run: | | |
make format | |
make lints | |
make test.ignored | |
env: | |
RUST_BACKTRACE: 1 | |
KAFKA_BROKERS: localhost:9092 | |
- name: Stop Containers | |
if: always() | |
run: docker compose -f "docker-compose.yml" down |