Skip to content
Open
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
2 changes: 2 additions & 0 deletions .github/container/pip-finalize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ else
# Replace any tensorflow==X with tensorflow-cpu==X in requirements.txt only on amd64
if [[ "$(uname -m)" = "x86_64" ]]; then
sed -i 's/^tensorflow==\([0-9.*]\+\)$/tensorflow-cpu==\1/' requirements.txt
elif [[ "$(uname -m)" = "arm64" ]] || [[ "$(uname -m)" = "aarch64" ]]; then
sed -i 's/^tensorflow==.*$/tensorflow==2.18.1/' requirements.txt
else
echo "Skipping TF on $(uname -m)"
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ jobs:
CUDA_IMAGE: ${{ needs.metadata.outputs.CUDA_IMAGE }}
MANIFEST_ARTIFACT_NAME: ${{ needs.metadata.outputs.MANIFEST_ARTIFACT_NAME }}
SOURCE_URLREFS: ${{ needs.bump-manifest.outputs.SOURCE_URLREFS }}
MODE: ${{ github.event_name == 'workflow_dispatch' && inputs.MODE || 'full' }}
MODE: "axlearn" # ${{ github.event_name == 'workflow_dispatch' && inputs.MODE || 'full' }}
secrets: inherit

# Only merge if everything succeeds
Expand Down
Loading