-
Notifications
You must be signed in to change notification settings - Fork 199
41 lines (37 loc) · 1.06 KB
/
pr.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: pr
on:
push:
branches:
- "pull-request/[0-9]+"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
SHARED_ACTIONS_REF: empty-certs
jobs:
telemetry-setup:
runs-on: ubuntu-latest
continue-on-error: true
env:
OTEL_SERVICE_NAME: "pr-rmm"
OTEL_EXPORTER_OTLP_ENDPOINT: "https://fb.local.gha-runners.nvidia.com:4318/"
SHARED_ACTIONS_REF: empty-certs
steps:
- name: Telemetry setup
uses: rapidsai/shared-actions/telemetry-dispatch-stash-base-env-vars@empty-certs
conda-cpp-build:
secrets: inherit
needs: telemetry-setup
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@no-certs
with:
build_type: pull-request
telemetry-summarize:
runs-on: linux-amd64-cpu4-test-west
needs: conda-cpp-build
if: always()
continue-on-error: true
env:
SHARED_ACTIONS_REF: empty-certs
steps:
- name: Telemetry summarize
uses: rapidsai/shared-actions/telemetry-dispatch-write-summary@empty-certs