Skip to content

Commit a97e276

Browse files
committed
CI: avoid apt install in atom-dev image
Remove the apt install step from the FlyDSL ATOM integration workflow because the current atom-dev image already includes the required system tools and has broken ROCm apt dependencies. Keep lightweight tool checks so the workflow still fails early if the image contents drift.
1 parent be8d6e9 commit a97e276

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/flydsl-atom-integration.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,10 @@ jobs:
119119
run: |
120120
docker exec "${CONTAINER_NAME}" bash -lc "
121121
set -euo pipefail
122-
apt-get update
123-
apt-get install -y cmake build-essential git curl
122+
command -v git curl cmake python3
123+
git --version
124+
cmake --version
125+
python3 --version
124126
python3 -m pip install --timeout 60 --retries 10 -U pip setuptools wheel
125127
python3 -m pip install --timeout 60 --retries 10 'ninja>=1.11.1' 'pybind11>=3.0.1' 'lm-eval[api]' hf_transfer 'huggingface_hub[cli]'
126128
git config --global --add safe.directory /workspace/flydsl-test

0 commit comments

Comments
 (0)