CI #2511
ci.yaml
on: schedule
metadata
3s
Matrix: amd64 / test-distribution
Matrix: arm64 / test-distribution
Matrix: amd64 / test-jax / run-unit-test
Waiting for pending jobs
Matrix: amd64 / test-pallas / run-unit-test
Waiting for pending jobs
amd64
/
...
/
launch-slurm-runner
amd64
/
...
/
launch-slurm-runner
Matrix: arm64 / test-jax / run-unit-test
Waiting for pending jobs
Matrix: arm64 / test-pallas / run-unit-test
Waiting for pending jobs
arm64
/
...
/
launch-slurm-runner
arm64
/
...
/
launch-slurm-runner
Matrix: amd64 / test-te / run-unit-test
Waiting for pending jobs
Matrix: amd64 / test-upstream-pax / pax-multi-node
Waiting for pending jobs
Matrix: amd64 / test-upstream-pax / single-process-evaluation
Waiting for pending jobs
Matrix: amd64 / test-upstream-pax / single-process-multi-device
Waiting for pending jobs
Matrix: amd64 / test-te-multigpu / te-multi-gpu
Waiting for pending jobs
Matrix: amd64 / test-upstream-t5x / t5x-multi-gpu
Waiting for pending jobs
Matrix: amd64 / test-upstream-t5x / t5x-multi-node
Waiting for pending jobs
Matrix: amd64 / test-levanter / run-unit-test
Waiting for pending jobs
Matrix: amd64 / test-maxtext / maxtext-multinode
Waiting for pending jobs
Matrix: amd64 / test-maxtext / single-process-multi-device
Waiting for pending jobs
Matrix: amd64 / test-triton / run-unit-test
Waiting for pending jobs
Matrix: arm64 / test-te / run-unit-test
Waiting for pending jobs
Matrix: arm64 / test-upstream-pax / pax-multi-node
Waiting for pending jobs
Matrix: arm64 / test-upstream-pax / single-process-evaluation
Waiting for pending jobs
Matrix: arm64 / test-upstream-pax / single-process-multi-device
Waiting for pending jobs
Matrix: arm64 / test-te-multigpu / te-multi-gpu
Waiting for pending jobs
Matrix: arm64 / test-upstream-t5x / t5x-multi-gpu
Waiting for pending jobs
Matrix: arm64 / test-upstream-t5x / t5x-multi-node
Waiting for pending jobs
Matrix: arm64 / test-levanter / run-unit-test
Waiting for pending jobs
Matrix: arm64 / test-maxtext / maxtext-multinode
Waiting for pending jobs
Matrix: arm64 / test-maxtext / single-process-multi-device
Waiting for pending jobs
Matrix: arm64 / test-triton / run-unit-test
Waiting for pending jobs
Matrix: amd64 / test-rosetta-pax / rosetta-pax-multi-node-te
Waiting for pending jobs
Matrix: amd64 / test-rosetta-pax / rosetta-pax-multi-node
Waiting for pending jobs
Matrix: amd64 / test-rosetta-pax / rosetta-pax-single-node-dropout-te
Waiting for pending jobs
Matrix: amd64 / test-rosetta-pax / single-process-evaluation-te
Waiting for pending jobs
Matrix: amd64 / test-rosetta-pax / single-process-multi-device-te
Waiting for pending jobs
Matrix: amd64 / test-rosetta-t5x / multi-gpu-multi-node
Waiting for pending jobs
Matrix: amd64 / test-rosetta-t5x / single-process-multi-device
Waiting for pending jobs
Matrix: amd64 / test-rosetta-t5x / vit-multi-gpu-multi-node
Waiting for pending jobs
Matrix: amd64 / test-rosetta-t5x / vit-single-process-multi-device
Waiting for pending jobs
Matrix: arm64 / test-rosetta-pax / rosetta-pax-multi-node-te
Waiting for pending jobs
Matrix: arm64 / test-rosetta-pax / rosetta-pax-multi-node
Waiting for pending jobs
Matrix: arm64 / test-rosetta-pax / rosetta-pax-single-node-dropout-te
Waiting for pending jobs
Matrix: arm64 / test-rosetta-pax / single-process-evaluation-te
Waiting for pending jobs
Matrix: arm64 / test-rosetta-pax / single-process-multi-device-te
Waiting for pending jobs
Matrix: arm64 / test-rosetta-t5x / multi-gpu-multi-node
Waiting for pending jobs
Matrix: arm64 / test-rosetta-t5x / single-process-multi-device
Waiting for pending jobs
Matrix: arm64 / test-rosetta-t5x / vit-multi-gpu-multi-node
Waiting for pending jobs
Matrix: arm64 / test-rosetta-t5x / vit-single-process-multi-device
Waiting for pending jobs
Matrix: publish-containers
finalize
/
publish-badge
5s
Annotations
3 errors and 3 warnings
amd64 / build-base / build-base
buildx failed with: ERROR: failed to solve: process "/bin/sh -c <<\"EOF\" bash -ex\nexport DEBIAN_FRONTEND=noninteractive\nexport TZ=America/Los_Angeles\napt-get update\n\napt_packages=(\n # generic\n bat\n build-essential\n checkinstall\n cmake\n curl\n git\n gnupg\n liblzma-dev\n python-is-python3\n python3-pip\n rsync\n vim\n wget\n jq\n # llvm.sh\n lsb-release software-properties-common\n # GCP autoconfig\n pciutils hwloc bind9-host\n)\nif [[ $(dpkg --print-architecture) == arm64 ]]; then\n # h5py: The newest release of of h5py (3.11.0) does not include ARM wheels and causes pip to build h5py.\n # These installs ensure that 3.11.0, or any future version missing ARM, can be built.\n # Related: https://github.com/h5py/h5py/issues/2408\n apt_packages+=(pkg-config libhdf5-dev)\nfi\napt-get install -y ${apt_packages[@]}\n\n# Install LLVM/Clang\nbash -c \"$(wget -O - https://apt.llvm.org/llvm.sh)\" -- ${CLANG_VERSION}\napt-get remove -y software-properties-common lsb-release\napt-get autoremove -y # removes python3-blinker which conflicts with pip-compile in JAX\n\n# Make sure that clang and clang++ point to the new version. This list is based\n# on the symlinks installed by the `clang` (as opposed to `clang-14`) and `lld`\n# (as opposed to `lld-14`) packages available in Ubuntu 22.04. 100 is an\n# arbitrary priority.\nupdate-alternatives --verbose \\\n --install /usr/bin/clang clang /usr/lib/llvm-${CLANG_VERSION}/bin/clang 100 \\\n --slave /usr/bin/asan_symbolize asan_symbolize /usr/bin/asan_symbolize-${CLANG_VERSION} \\\n --slave /usr/bin/clang++ clang++ /usr/lib/llvm-${CLANG_VERSION}/bin/clang++ \\\n --slave /usr/bin/ld.lld ld.lld /usr/lib/llvm-${CLANG_VERSION}/bin/lld \\\n --slave /usr/bin/lld lld /usr/lib/llvm-${CLANG_VERSION}/bin/lld \\\n --slave /usr/bin/lld-link lld-link /usr/lib/llvm-${CLANG_VERSION}/bin/lld \\\n --slave /usr/bin/wasm-ld wasm-ld /usr/lib/llvm-${CLANG_VERSION}/bin/lld\n\n# Make sure that any later attempt to install `clang` or `lld` will fail.\ncat >/etc/apt/preferences.d/no-unversioned-clang-lld <<EOL\n# LLVM is installed from apt.llvm.org using versioned packages, whereas the\n# unversioned clang and lld packages come from Ubuntu and refer to older\n# versions of LLVM. Please use versioned packages in this container.\nPackage: clang\nPin: release *\nPin-Priority: -1\n\nPackage: lld\nPin: release *\nPin-Priority: -1\nEOL\n\napt-get clean\nrm -rf /var/lib/apt/lists/*\nEOF" did not complete successfully: exit code: 100
|
arm64 / build-base / build-base
buildx failed with: ERROR: failed to solve: process "/bin/sh -c <<\"EOF\" bash -ex\nexport DEBIAN_FRONTEND=noninteractive\nexport TZ=America/Los_Angeles\napt-get update\n\napt_packages=(\n # generic\n bat\n build-essential\n checkinstall\n cmake\n curl\n git\n gnupg\n liblzma-dev\n python-is-python3\n python3-pip\n rsync\n vim\n wget\n jq\n # llvm.sh\n lsb-release software-properties-common\n # GCP autoconfig\n pciutils hwloc bind9-host\n)\nif [[ $(dpkg --print-architecture) == arm64 ]]; then\n # h5py: The newest release of of h5py (3.11.0) does not include ARM wheels and causes pip to build h5py.\n # These installs ensure that 3.11.0, or any future version missing ARM, can be built.\n # Related: https://github.com/h5py/h5py/issues/2408\n apt_packages+=(pkg-config libhdf5-dev)\nfi\napt-get install -y ${apt_packages[@]}\n\n# Install LLVM/Clang\nbash -c \"$(wget -O - https://apt.llvm.org/llvm.sh)\" -- ${CLANG_VERSION}\napt-get remove -y software-properties-common lsb-release\napt-get autoremove -y # removes python3-blinker which conflicts with pip-compile in JAX\n\n# Make sure that clang and clang++ point to the new version. This list is based\n# on the symlinks installed by the `clang` (as opposed to `clang-14`) and `lld`\n# (as opposed to `lld-14`) packages available in Ubuntu 22.04. 100 is an\n# arbitrary priority.\nupdate-alternatives --verbose \\\n --install /usr/bin/clang clang /usr/lib/llvm-${CLANG_VERSION}/bin/clang 100 \\\n --slave /usr/bin/asan_symbolize asan_symbolize /usr/bin/asan_symbolize-${CLANG_VERSION} \\\n --slave /usr/bin/clang++ clang++ /usr/lib/llvm-${CLANG_VERSION}/bin/clang++ \\\n --slave /usr/bin/ld.lld ld.lld /usr/lib/llvm-${CLANG_VERSION}/bin/lld \\\n --slave /usr/bin/lld lld /usr/lib/llvm-${CLANG_VERSION}/bin/lld \\\n --slave /usr/bin/lld-link lld-link /usr/lib/llvm-${CLANG_VERSION}/bin/lld \\\n --slave /usr/bin/wasm-ld wasm-ld /usr/lib/llvm-${CLANG_VERSION}/bin/lld\n\n# Make sure that any later attempt to install `clang` or `lld` will fail.\ncat >/etc/apt/preferences.d/no-unversioned-clang-lld <<EOL\n# LLVM is installed from apt.llvm.org using versioned packages, whereas the\n# unversioned clang and lld packages come from Ubuntu and refer to older\n# versions of LLVM. Please use versioned packages in this container.\nPackage: clang\nPin: release *\nPin-Priority: -1\n\nPackage: lld\nPin: release *\nPin-Priority: -1\nEOL\n\napt-get clean\nrm -rf /var/lib/apt/lists/*\nEOF" did not complete successfully: exit code: 100
|
publish-containers (base, jax, 800, ghcr.io/nvidia/jax-toolbox-internal:8751457855-base-amd64, gh... / publish
Process completed with exit code 1.
|
merge-new-manifest
Unexpected input(s) 'owner_and_repo', valid inputs are ['route', 'mediaType']
|
merge-new-manifest
Unexpected input(s) 'owner_and_repo', 'head', 'base', 'body', 'title', 'draft', valid inputs are ['route', 'mediaType']
|
publish-containers (base, jax, 800, ghcr.io/nvidia/jax-toolbox-internal:8751457855-base-amd64, gh... / publish
No files were found with the provided path: final-base.md. No artifacts will be uploaded.
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
artifact-base-build-amd64
Expired
|
513 Bytes |
|
artifact-base-build-arm64
Expired
|
513 Bytes |
|
artifact-final-report
Expired
|
217 Bytes |
|
artifact-workflow-metadata
Expired
|
278 Bytes |
|
bumped-manifest
Expired
|
66.3 KB |
|