File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -57,14 +57,14 @@ echo "[Info] Current directory: $(pwd)"
5757echo " [Info] WORKSPACE: ${WORKSPACE} "
5858echo " [Info] Go version: $( go version) "
5959
60+ # Verify the wheel file exists
61+ echo " [Debug] Checking wheel file exists: ${WHEEL_FILE} "
62+ ls -la " ${WHEEL_FILE} " || { echo " [Error] Wheel file not found!" ; exit 1; }
63+
6064# Run revocation validation tests with pre-built wheel
6165echo " [Info] Running revocation validation tests..."
62- go run . \
63- --client snowflake-python \
64- --python-wheel " ${WHEEL_FILE} " \
65- --output " ${WORKSPACE} /revocation-results.json" \
66- --output-html " ${WORKSPACE} /revocation-report.html" \
67- --log-level info
66+ echo " [Debug] go run args: --client snowflake-python --python-wheel ${WHEEL_FILE} --output ${WORKSPACE} /revocation-results.json --output-html ${WORKSPACE} /revocation-report.html --log-level debug"
67+ go run . --client snowflake-python --python-wheel " ${WHEEL_FILE} " --output " ${WORKSPACE} /revocation-results.json" --output-html " ${WORKSPACE} /revocation-report.html" --log-level debug
6868
6969EXIT_CODE=$?
7070
You can’t perform that action at this time.
0 commit comments