Merge pull request #384 from emit-rs/feat/nullable #1737
This file contains hidden or 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: otlp | |
| on: [push, pull_request] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | |
| - name: Install Rust toolchain | |
| run: rustup default nightly | |
| - name: Install cargo-hack | |
| run: cargo install cargo-hack | |
| - name: All | |
| working-directory: ./emitter/otlp | |
| run: cargo test --all-features | |
| - name: Docs | |
| working-directory: ./emitter/otlp | |
| run: cargo doc --all-features --no-deps | |
| - name: Build powerset | |
| working-directory: ./emitter/otlp | |
| run: cargo hack build --feature-powerset --lib | |
| - name: Test powerset | |
| working-directory: ./emitter/otlp | |
| run: cargo hack test --feature-powerset --lib | |
| - name: Minimal versions | |
| working-directory: ./emitter/otlp | |
| run: cargo hack test --feature-powerset --lib -Z minimal-versions | |
| wasm: | |
| name: Test (Node) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | |
| - name: Setup Node | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 | |
| with: | |
| node-version: 24.x | |
| - name: Install wasm-pack | |
| run: cargo install wasm-pack | |
| - name: Default | |
| working-directory: ./emitter/otlp | |
| run: wasm-pack test --node | |
| - name: All | |
| working-directory: ./emitter/otlp | |
| run: wasm-pack test --node --all-features | |
| - name: Web | |
| working-directory: ./emitter/otlp | |
| run: wasm-pack test --node --no-default-features --features web | |
| integration: | |
| name: Test (Integration) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | |
| - name: Setup Node | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 | |
| with: | |
| node-version: 24.x | |
| - name: Install Rust toolchain | |
| run: rustup default nightly | |
| - name: Install cargo-hack | |
| run: cargo install cargo-hack | |
| - name: Install certutil | |
| run: sudo apt-get update && sudo apt-get install -y libnss3-tools | |
| - name: Get otelcol | |
| run: wget -O otelcol.deb https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/v0.107.0/otelcol_0.107.0_linux_amd64.deb | |
| - name: Install otelcol | |
| run: sudo dpkg -i ./otelcol.deb | |
| - name: Get mkcert | |
| working-directory: ./emitter/otlp/test/integration | |
| run: wget -O mkcert https://github.com/FiloSottile/mkcert/releases/download/v1.4.4/mkcert-v1.4.4-linux-amd64 && chmod +x mkcert | |
| - name: Configure mkcert | |
| working-directory: ./emitter/otlp/test/integration | |
| run: ./mkcert -install && ./mkcert 127.0.0.1 localhost | |
| - name: Integration Test | |
| working-directory: ./emitter/otlp/test/integration | |
| run: cargo hack run --feature-powerset | |
| - name: Throughput Test | |
| working-directory: ./emitter/otlp/test/throughput | |
| run: cargo run --release -- --spawn --flush | |
| integration-web: | |
| name: Test (Integration Node) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | |
| - name: Setup Node | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 | |
| with: | |
| node-version: 24.x | |
| - name: Install Rust toolchain | |
| run: rustup default nightly | |
| - name: Install wasm-pack | |
| run: cargo install wasm-pack | |
| - name: Get otelcol | |
| run: wget -O otelcol.deb https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/v0.107.0/otelcol_0.107.0_linux_amd64.deb | |
| - name: Install otelcol | |
| run: sudo dpkg -i ./otelcol.deb | |
| - name: Integration Test | |
| working-directory: ./emitter/otlp/test/web | |
| run: npm run exec |