Skip to content

Commit ee06956

Browse files
committed
feat: add cuda13 libs and update checksum
1 parent db6cdf8 commit ee06956

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/menlo-build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -592,6 +592,7 @@ jobs:
592592
steps:
593593
- name: Download cuda dependencies from s3 and create checksum
594594
run: |
595+
wget https://minio.menlo.ai:9000/cicd/dist/cuda-dependencies/13.0/linux/cuda.tar.gz -O /tmp/cudart-llama-bin-linux-cu13.0-x64.tar.gz
595596
wget https://minio.menlo.ai:9000/cicd/dist/cuda-dependencies/12.0/linux/cuda.tar.gz -O /tmp/cudart-llama-bin-linux-cu12.0-x64.tar.gz
596597
wget https://minio.menlo.ai:9000/cicd/dist/cuda-dependencies/11.7/linux/cuda.tar.gz -O /tmp/cudart-llama-bin-linux-cu11.7-x64.tar.gz
597598
wget https://minio.menlo.ai:9000/cicd/dist/cuda-dependencies/12.0/windows/cuda.tar.gz -O /tmp/cudart-llama-bin-win-cu12.0-x64.tar.gz
@@ -612,6 +613,11 @@ jobs:
612613
"- url: llama-\($version)-\($key).tar.gz\n sha512: >-\n \($sha512[$key])\n size: \($size[$key])"
613614
' >> checksum.yml
614615
616+
echo "- url: cudart-llama-bin-linux-cu13.0-x64.tar.gz" >> checksum.yml
617+
echo " sha512: >-" >> checksum.yml
618+
echo " $(sha512sum /tmp/cudart-llama-bin-linux-cu13.0-x64.tar.gz | awk '{ print $1 }')" >> checksum.yml
619+
echo " size: $(stat -c%s /tmp/cudart-llama-bin-linux-cu13.0-x64.tar.gz)" >> checksum.yml
620+
615621
echo "- url: cudart-llama-bin-linux-cu12.0-x64.tar.gz" >> checksum.yml
616622
echo " sha512: >-" >> checksum.yml
617623
echo " $(sha512sum /tmp/cudart-llama-bin-linux-cu12.0-x64.tar.gz | awk '{ print $1 }')" >> checksum.yml
@@ -644,6 +650,17 @@ jobs:
644650
asset_name: checksum.yml
645651
asset_content_type: text/yaml
646652

653+
- name: upload cudart-llama-bin-linux-cu13.0-x64.tar.gz to Github Release
654+
uses: actions/upload-release-asset@v1
655+
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
656+
env:
657+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
658+
with:
659+
upload_url: ${{ needs.create-draft-release.outputs.upload_url }}
660+
asset_path: /tmp/cudart-llama-bin-linux-cu13.0-x64.tar.gz
661+
asset_name: cudart-llama-bin-linux-cu13.0-x64.tar.gz
662+
asset_content_type: application/gzip
663+
647664
- name: upload cudart-llama-bin-linux-cu12.0-x64.tar.gz to Github Release
648665
uses: actions/upload-release-asset@v1
649666
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)