Skip to content

Commit

Permalink
add CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed May 23, 2024
1 parent 4dac77e commit cfc9910
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions ci/container-canary/run-checks.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

set -e -u -o pipefail

IMAGE_URI="${1}"

# using a config checked in here
canary validate \
--file ./ci/container-canary/rapids.yml \
"${IMAGE_URI}"

# usage a config from the container-canary repo
canary validate \
--file https://raw.githubusercontent.com/NVIDIA/container-canary/main/examples/databricks.yaml \
"${IMAGE_URI}"

0 comments on commit cfc9910

Please sign in to comment.