Add iree-cpuinfo to the python iree-runtime wheel. (#14209)

Fixes #14198
diff --git a/.github/workflows/validate_and_publish_release.yml b/.github/workflows/validate_and_publish_release.yml
index 9cad67b..eb4df98 100644
--- a/.github/workflows/validate_and_publish_release.yml
+++ b/.github/workflows/validate_and_publish_release.yml
@@ -42,12 +42,16 @@
         id: install_python_packages
         run: |
           python -m pip install -f file://$PWD/artifact/ iree-compiler iree-runtime iree-tools-tflite iree-tools-tf
+      # Binaries from the tarball
       - name: Run iree-benchmark-module
         id: run_iree_benchmark_module
         run: ./bin/iree-benchmark-module --help
       - name: Run iree-benchmark-trace
         id: run_iree_benchmark_trace
         run: ./bin/iree-benchmark-trace --help
+      - name: Run iree-cpuinfo
+        id: run_iree_cpuinfo
+        run: ./bin/iree-cpuinfo
       - name: Run iree-flatcc-cli
         id: run_iree_flatcc_cli
         run: ./bin/iree-flatcc-cli --help
@@ -69,6 +73,22 @@
       - name: Run iree-compile
         id: run_iree-compile
         run: ./bin/iree-compile --help
+      # Console scripts from the wheels.
+      - name: Py iree-run-module
+        id: py_iree-run-module
+        run: iree-run-module --help
+      - name: Py iree-run-trace
+        id: py_iree-run-trace
+        run: iree-run-trace --help
+      - name: Py iree-benchmark-module
+        id: py_iree_benchmark_module
+        run: iree-benchmark-module --help
+      - name: Py iree-benchmark-trace
+        id: py_iree_benchmark_trace
+        run: iree-benchmark-trace --help
+      - name: Py iree-cpuinfo
+        id: py_iree_cpuinfo
+        run: iree-cpuinfo
 
   publish_release:
     name: "Publish release"