File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 29
29
haskell : true
30
30
large-packages : true
31
31
swap-storage : false
32
+ docker-images : false
32
33
33
34
- name : Checkout repository
34
35
uses : actions/checkout@v3
Original file line number Diff line number Diff line change @@ -37,6 +37,12 @@ RUN pip install --no-cache-dir --ignore-installed --extra-index-url https://down
37
37
38
38
RUN git clone https://github.com/Dao-AILab/flash-attention.git -b v2.7.4.post1
39
39
RUN cd flash-attention/hopper && MAX_JOBS=1 NVCC_THREADS=1 FLASH_ATTN_CUDA_ARCHS=90 python setup.py bdist_wheel
40
- RUN apt-get install gh
40
+ RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | \
41
+ dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg && \
42
+ chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg && \
43
+ echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | \
44
+ tee /etc/apt/sources.list.d/github-cli.list > /dev/null && \
45
+ apt-get update && \
46
+ apt-get install -y gh
41
47
RUN gh release create v2.7.4.post1 dist/*.whl --title "Release v2.7.4.post1" --notes "Release .whl package" \
42
48
&& echo "Uploaded to GitHub Releases"
You can’t perform that action at this time.
0 commit comments