Hello guys, I added the ARM architecture to my build stage but when running the build I get errors during the installation of the Dart SDK. How should I proceed to compile my application on the ARM architecture in Travis?
Dart for Travis-CI is not officially supported, but is community maintained.
Please file any issues using the following link
https://travis-ci.community/c/languages/dart
and mention `@athomas` and `@a14n` in the issue
$ export PUB_ENVIRONMENT=travis
Installing Dart on linux
5.20s$ curl --connect-timeout 15 --retry 5 https://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip > ${TRAVIS_HOME}/dartsdk.zip
0.03s$ unzip ${TRAVIS_HOME}/dartsdk.zip -d ${TRAVIS_HOME} > /dev/null
/home/travis/.travis/functions: line 109: unzip: command not found
The command "unzip ${TRAVIS_HOME}/dartsdk.zip -d ${TRAVIS_HOME} > /dev/null" failed and exited with 127 during .
It seems to me that some dependencies are missing in the S.O such as the unzip application