Skip to content

Commit 083da23

Browse files
committed
fix up
1 parent 08e9439 commit 083da23

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test_ubuntuNativeContainerNV.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727
DEBIAN_FRONTEND=noninteractive apt-get update -y
2828
DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-pip python3-venv git autotools-dev wget gcc g++ build-essential cmake ninja-build
2929
DEBIAN_FRONTEND=noninteractive apt-get install -y python3-dev pybind11-dev python3-distutils
30-
pip3 install pybind11 -q
30+
pip3 install --upgrade pip setuptools wheel
31+
pip3 install pybind11
3132
3233
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-keyring_1.1-1_all.deb
3334
dpkg -i cuda-keyring_1.1-1_all.deb
@@ -98,7 +99,10 @@ jobs:
9899
set -x
99100
pip uninstall -y triton
100101
git config --global --add safe.directory /__w/flagtree/flagtree
101-
export CMAKE_MAKE_PROGRAM=$(which make)
102+
export Python3_ROOT_DIR=/usr/bin/python3
103+
export Python3_INCLUDE_DIR=/usr/include/python3.10
104+
export CMAKE_MAKE_PROGRAM=$(which ninja)
105+
export PIP_NO_CACHE_DIR=1
102106
cd /__w/flagtree/flagtree/python
103107
MAX_JOBS=32 python3 -m pip install . --no-build-isolation
104108

0 commit comments

Comments
 (0)