我是新来的 travis,开始用颤振处理它。
我正在 为我的音乐播放器应用程序使用 flute_music_player插件。
现在应用程序在我的机器上本地运行/构建良好,但我无法在 Travis 上构建它
这是我得到的
$ ./flutter/bin/flutter test
Running "flutter packages get" in tumultus...
Package flute_music_player requires Flutter SDK version ^0.1.2 but the current SDK is 0.0.0-unknown.
---- Log transcript ----
.
.
.
.
---- End log transcript ----
pub get failed (1)
The command "./flutter/bin/flutter test" exited with 1.
store build cache
nothing changed, not updating cache
Done. Your build exited with 1.
这是我完整的工作 日志的链接。
我的 travis.yml 是:
os:
- linux
sudo: false
addons:
apt:
# Flutter depends on /usr/lib/x86_64-linux-gnu/libstdc++.so.6 version GLIBCXX_3.4.18
sources:
- ubuntu-toolchain-r-test # if we don't specify this, the libstdc++6 we get is the wrong version
packages:
- libstdc++6
- fonts-droid
before_script:
- git clone https://github.com/flutter/flutter.git -b alpha --depth 1
- ./flutter/bin/flutter doctor
script:
- ./flutter/bin/flutter test
cache:
directories:
- $HOME/.pub-cache
我的完整项目可以在 github 上找到
实际上我已经从这里复制了大部分代码,我试图在 travis 上运行他的项目,但在日志上出现同样的错误。
有没有我缺的地方,请帮忙。
感谢您提前提供任何帮助或建议。