Hello Travis community,
My issue is related to the fact that I’m not able to build the android version of my app due to a tar command failure. The iOS version works well, and Android version worked as well three weeks ago, but now it seems to fail without any reason. Here’s a snippet of the travis.yml file where the build is failing:
- wget http://dl.google.com/android/android-sdk_r24.4-linux.tgz
- tar -xvf android-sdk_r24.4-linux.tgz
The error is the following:
tar: write error
travis_time:end:1e426b40:start=1553721739242950942,finish=1553721747900355559,duration=8657404617
e[0Ke[31;1mThe command “tar -xvf android-sdk_r24.4-linux.tgz” failed and exited with 2 during .
I also ran df command and after downloading the archive, the volume is at 24% of its capacity. Here is the output of the df command:
Filesystem 1K-blocks Used Available Use% Mounted on
udev 3817196 4 3817192 1% /dev
tmpfs 765940 300 765640 1% /run
/dev/sda1 72214856 11794492 57363320 18% /
none 4 0 4 0% /sys/fs/cgroup
none 5120 0 5120 0% /run/lock
none 3829684 0 3829684 0% /run/shm
none 102400 0 102400 0% /run/user
none 786432 183032 603400 24% /var/ramfs
Here is the link to the travis.yml file: https://github.com/GrepDev/kitchen-mobile/blob/master/.travis.yml.
Did anyone experience a similar issue? How did you solve it?
Thanks!