Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 8 additions & 15 deletions .github/workflows/build_test_publish_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,11 @@ defaults:
run:
shell: bash

permissions:
actions: read
checks: none
contents: read
deployments: none
discussions: none
id-token: write
issues: none
packages: read
pages: none
pull-requests: read
repository-projects: none
security-events: none
statuses: none

jobs:
compute-matrix:
runs-on: ubuntu-latest
permissions:
contents: read
container:
image: rapidsai/ci-conda:26.06-latest
outputs:
Expand Down Expand Up @@ -111,6 +98,8 @@ jobs:
build-images:
name: Build images
needs: compute-matrix
permissions:
contents: read
secrets: inherit # zizmor: ignore[secrets-inherit]
strategy:
matrix: ${{ fromJson(needs.compute-matrix.outputs.MATRIX) }}
Expand All @@ -127,6 +116,8 @@ jobs:
build-cuopt-multiarch-manifest:
name: Build cuopt multiarch manifest
needs: [build-images, compute-matrix]
permissions:
contents: read
strategy:
matrix:
CUDA_VER: ${{ fromJson(needs.compute-matrix.outputs.MATRIX).cuda_ver }}
Expand Down Expand Up @@ -171,6 +162,8 @@ jobs:
test-images:
name: Test images
needs: [build-cuopt-multiarch-manifest, compute-matrix]
permissions:
contents: read
secrets: inherit # zizmor: ignore[secrets-inherit]
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion ci/test_self_hosted_service.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ DELAY=10

sleep $DELAY

server_status=$(curl -k -sL https://0.0.0.0:$CUOPT_SERVER_PORT/cuopt/health)
server_status=$(curl -k -sL https://0.0.0.0:$CUOPT_SERVER_PORT/cuopt/health) # NOSONAR — self-signed cert generated locally by this script for CI; not a real TLS endpoint.

EXITCODE=0

Expand Down
Loading