correct test results acquration #1
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: Nightly Testing | ||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
jobs: | ||
test-linux-sanitizers: | ||
name: Linux placeholder testing and sanitize with clang | ||
uses: ./.github/workflows/clang-sanitizers-linux-nix-check.yml | ||
if: | | ||
always() && !cancelled() | ||
secrets: inherit | ||
post-telemetry: | ||
name: Post test results in Open Telemetry format | ||
runs-on: [self-hosted, Linux, X64, aws_autoscaling] | ||
needs: | ||
- test-linux-sanitizers | ||
run: | | ||
ls -l -a | ||
ls -l -a ./result/ | ||
export OTEL_PYTHON_LOGGING_AUTO_INSTRUMENTATION_ENABLED=true | ||
opentelemetry-instrument \ | ||
--traces_exporter console,otlp \ | ||
--metrics_exporter console,otlp \ | ||
--logs_exporter console,otlp \ | ||
--service_name nightly-build \ | ||
python3 ./example.py |