Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ To upload sysroots to the Azure storage container after they've been generated,
./build/linux/sysroot_scripts/build_and_upload.py --build
```

Ensure you have a valid `AZURE_STORAGE_SAS_TOKEN` as well as `AZURE_STORAGE_ACCOUNT` in your environment, or upload will fail.
Ensure you are logged into Azure as well as setting `AZURE_STORAGE_ACCOUNT` in your environment, or upload will fail.
2 changes: 0 additions & 2 deletions build/linux/sysroot_scripts/build_and_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ def build_and_upload(key, arch, lock, action):
sysroot_creator.build_sysroot(arch)

if action & Action.UPLOAD:
if "AZURE_STORAGE_SAS_TOKEN" not in os.environ:
raise RuntimeError("AZURE_STORAGE_SAS_TOKEN is required to upload sysroots")
sysroot_creator.upload_sysroot(arch)

tarball = "%s_%s_%s_sysroot.tar.xz" % (
Expand Down