Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

agonessdk-0.8.0-*-runtime-linux-arch_64.tar.gz is growing unboundedly #589

Closed
ilkercelikyilmaz opened this issue Feb 12, 2019 · 2 comments
Closed
Labels
area/build-tools Development tooling. I.e. pretty much everything in the `build` directory. kind/bug These are bugs. kind/release Checklist for a release
Milestone

Comments

@ilkercelikyilmaz
Copy link
Contributor

ilkercelikyilmaz commented Feb 12, 2019

The agonessdk-0.8.0-*-runtime-linux-arch_64.tar.gz is growing unboundedly. I ran out of disk space on my desktop. I needed to delete files under src/agones.dev/agones/sdks/cpp/bin

-rw-r--r-- 1 root root    303216640 Jan 30 17:37 agonessdk-0.8.0-41408c4-dev-linux-arch_64.tar.gz
-rw-r--r-- 1 root root     69294080 Jan 30 17:37 agonessdk-0.8.0-41408c4-runtime-linux-arch_64.tar.gz
-rw-r--r-- 1 root root        31722 Jan 30 17:37 agonessdk-0.8.0-41408c4-src.zip
-rw-r--r-- 1 root root    303216640 Feb  1 10:38 agonessdk-0.8.0-41d6656-dev-linux-arch_64.tar.gz
-rw-r--r-- 1 root root   1186918400 Feb  1 10:38 agonessdk-0.8.0-41d6656-runtime-linux-arch_64.tar.gz
-rw-r--r-- 1 root root        31722 Feb  1 10:38 agonessdk-0.8.0-41d6656-src.zip
-rw-r--r-- 1 root root    303216640 Feb  6 23:30 agonessdk-0.8.0-633d199-dev-linux-arch_64.tar.gz
-rw-r--r-- 1 root root   5657436160 Feb  6 23:30 agonessdk-0.8.0-633d199-runtime-linux-arch_64.tar.gz
-rw-r--r-- 1 root root        31722 Feb  6 23:30 agonessdk-0.8.0-633d199-src.zip
-rw-r--r-- 1 root root    303216640 Feb  7 10:09 agonessdk-0.8.0-6f30bdb-dev-linux-arch_64.tar.gz
-rw-r--r-- 1 root root  11618119680 Feb  7 10:09 agonessdk-0.8.0-6f30bdb-runtime-linux-arch_64.tar.gz
-rw-r--r-- 1 root root        31722 Feb  7 10:09 agonessdk-0.8.0-6f30bdb-src.zip
-rw-r--r-- 1 root root    303216640 Feb 12 14:28 agonessdk-0.8.0-7161b55-dev-linux-arch_64.tar.gz
-rw-r--r-- 1 root root  95067709440 Feb 12 14:28 agonessdk-0.8.0-7161b55-runtime-linux-arch_64.tar.gz
-rw-r--r-- 1 root root        31722 Feb 12 14:28 agonessdk-0.8.0-7161b55-src.zip
-rw-r--r-- 1 root root    303216640 Jan 31 10:04 agonessdk-0.8.0-a9469b6-dev-linux-arch_64.tar.gz
-rw-r--r-- 1 root root    441835520 Jan 31 10:04 agonessdk-0.8.0-a9469b6-runtime-linux-arch_64.tar.gz
-rw-r--r-- 1 root root        31722 Jan 31 10:04 agonessdk-0.8.0-a9469b6-src.zip
-rw-r--r-- 1 root root    303216640 Feb 11 14:25 agonessdk-0.8.0-b412383-dev-linux-arch_64.tar.gz
-rw-r--r-- 1 root root  47382231040 Feb 11 14:25 agonessdk-0.8.0-b412383-runtime-linux-arch_64.tar.gz
-rw-r--r-- 1 root root        31722 Feb 11 14:25 agonessdk-0.8.0-b412383-src.zip
-rw-r--r-- 1 root root    303216640 Feb 11 10:06 agonessdk-0.8.0-c556fab-dev-linux-arch_64.tar.gz
-rw-r--r-- 1 root root  23539486720 Feb 11 10:06 agonessdk-0.8.0-c556fab-runtime-linux-arch_64.tar.gz
-rw-r--r-- 1 root root        31722 Feb 11 10:06 agonessdk-0.8.0-c556fab-src.zip
-rw-r--r-- 1 root root 187317727232 Feb 12 14:43 agonessdk-0.8.0-f202b29-runtime-linux-arch_64.tar.gz
-rw-r--r-- 1 root root    303216640 Feb  6 15:23 agonessdk-0.8.0-f9e7e81-dev-linux-arch_64.tar.gz
-rw-r--r-- 1 root root   2677094400 Feb  6 15:23 agonessdk-0.8.0-f9e7e81-runtime-linux-arch_64.tar.gz
-rw-r--r-- 1 root root        31722 Feb  6 15:23 agonessdk-0.8.0-f9e7e81-src.zip
@jkowalski jkowalski added kind/bug These are bugs. area/build-tools Development tooling. I.e. pretty much everything in the `build` directory. kind/release Checklist for a release labels Feb 13, 2019
@jkowalski
Copy link
Contributor

Yeah, 187GB seems excessive :)

@aLekSer
Copy link
Collaborator

aLekSer commented Feb 15, 2019

I will produce a PR with a fix soon.
For development you could use this small script or use make build-images instead of make build (without make build-sdks):

#!/bin/bash
set -e
make -j4 build-images
make -j3 push
make install

aLekSer added a commit to aLekSer/agones that referenced this issue Feb 15, 2019
Fix for exponential growing agonessdk-$(VERSION)-runtime archive.
Closes googleforgames#589.
jkowalski pushed a commit that referenced this issue Feb 15, 2019
Fix for exponential growing agonessdk-$(VERSION)-runtime archive.
Closes #589.
@markmandel markmandel added this to the 0.8.0 milestone Feb 20, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/build-tools Development tooling. I.e. pretty much everything in the `build` directory. kind/bug These are bugs. kind/release Checklist for a release
Projects
None yet
Development

No branches or pull requests

4 participants