Skip to content

Commit

Permalink
Do not actually upload blobs to azure
Browse files Browse the repository at this point in the history
  • Loading branch information
bertmaher committed Nov 15, 2024
1 parent b2b9e13 commit d6fa608
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/llvm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,10 @@ jobs:
- name: Upload LLVM Artifacts to Azure
if: ${{ (github.repository == 'triton-lang/triton') }}
run: |
az storage blob upload --account-name oaitriton --auth-mode login --container-name public --file "${{ env.llvm_install_dir }}.tar.gz" --name "llvm-builds/${{ env.llvm_install_dir }}.tar.gz" --overwrite
#az storage blob upload --account-name oaitriton --auth-mode login --container-name public --file "${{ env.llvm_install_dir }}.tar.gz" --name "llvm-builds/${{ env.llvm_install_dir }}.tar.gz" --overwrite
URL=$(az storage blob url --account-name oaitriton --auth-mode login --container-name public --name "llvm-builds/${{ env.llvm_install_dir }}.tar.gz")
echo "Blob URL: ${URL}"
#URL=$(az storage blob url --account-name oaitriton --auth-mode login --container-name public --name "llvm-builds/${{ env.llvm_install_dir }}.tar.gz")
#echo "Blob URL: ${URL}"
- name: Azure Logout
if: ${{ (github.repository == 'triton-lang/triton') }}
Expand Down

0 comments on commit d6fa608

Please sign in to comment.