Skip to content

Commit

Permalink
hard-code default endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
msarahan committed Oct 11, 2024
1 parent 07bf000 commit 08ab5e8
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
TEMPO_HOST: https://136.49.91.190:4318

jobs:
telemetry-setup:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -81,7 +78,7 @@ jobs:
with:
build_type: pull-request
traceparent: ${{ needs.telemetry-setup.outputs.traceparent }}
default_endpoint: $TEMPO_HOST
default_endpoint: https://136.49.91.190:4318
conda-cpp-tests:
needs: [conda-cpp-build, changed-files]
secrets: inherit
Expand All @@ -98,7 +95,7 @@ jobs:
with:
build_type: pull-request
traceparent: ${{ needs.telemetry-setup.outputs.traceparent }}
default_endpoint: $TEMPO_HOST
default_endpoint: https://136.49.91.190:4318
conda-python-tests:
needs: [conda-python-build, changed-files]
secrets: inherit
Expand All @@ -119,7 +116,7 @@ jobs:
container_image: "rapidsai/ci-conda:latest"
run_script: "ci/build_docs.sh"
traceparent: ${{ needs.telemetry-setup.outputs.traceparent }}
default_endpoint: $TEMPO_HOST
default_endpoint: https://136.49.91.190:4318
wheel-build-cpp:
needs:
- checks
Expand All @@ -131,7 +128,7 @@ jobs:
build_type: pull-request
script: ci/build_wheel_cpp.sh
traceparent: ${{ needs.telemetry-setup.outputs.traceparent }}
default_endpoint: $TEMPO_HOST
default_endpoint: https://136.49.91.190:4318
wheel-build-python:
needs:
- wheel-build-cpp
Expand All @@ -142,7 +139,7 @@ jobs:
build_type: pull-request
script: ci/build_wheel_python.sh
traceparent: ${{ needs.telemetry-setup.outputs.traceparent }}
default_endpoint: $TEMPO_HOST
default_endpoint: https://136.49.91.190:4318
wheel-tests:
needs: [wheel-build-python, changed-files]
secrets: inherit
Expand All @@ -160,7 +157,7 @@ jobs:
arch: '["amd64"]'
cuda: '["12.5"]'
traceparent: ${{ needs.telemetry-setup.outputs.traceparent }}
default_endpoint: $TEMPO_HOST
default_endpoint: https://136.49.91.190:4318
build_command: |
sccache -z;
build-all -DBUILD_BENCHMARKS=ON --verbose;
Expand Down

0 comments on commit 08ab5e8

Please sign in to comment.