Merge "CI: fix artifact uploader"
diff --git a/infra/ci/worker/artifacts_uploader.py b/infra/ci/worker/artifacts_uploader.py
index 8bf1b00..d2c5f25 100644
--- a/infra/ci/worker/artifacts_uploader.py
+++ b/infra/ci/worker/artifacts_uploader.py
@@ -119,7 +119,7 @@
# Make all artifacts readable by our user. Some of them are extracted as
# rw-rw--- and owned by a diffrent user (whatever the "sandbox" docker
# container uid ends up mapping to).
- subprocess.call(['sudo', 'chown', '-R', os.geteuid(), dirpath])
+ subprocess.call(['sudo', 'chown', '-R', str(os.geteuid()), dirpath])
total_size = 0
uploads = 0