1

我在 GitHub 上有一个使用 Travis-ci 进行持续集成的 Android 项目。

构建当前失败,我需要显示模拟器的 logcat 以查找有关自动构建期间发生的问题的更多详细信息。

我试图同时添加:

after_failure:
  - adb logcat 

after_script:
  - adb logcat 

但是这两个命令都不会被执行。

也许这是由于 travis-ci java 项目构建在执行mvn install真正的脚本之前执行命令并且两个命令都没有执行......我真的被卡住了。任何帮助,将不胜感激。

4

2 回答 2

1

我认为您已经不需要它,但我会尝试回答这个问题。

您需要添加--all标志,否则这些包不可用。

Google 已弃用该-p --obsolete标志,并且只有建议的(较新的)包不带-a --all标志可用。

请参阅缺少的构建工具 - 第 56 行

 echo "y" | android update sdk --filter platform-tools,build-tools-17.0.0,android-16,extra-android-support,$ANDROID_SDKS --no-ui --force > /dev/null
Error: Missing platform-tools
Error: Missing platform-tools
Error: Ignoring unknown package filter 'build-tools-17.0.0'

目前建议使用最新的平台工具,但始终不带--all标志,但:

$ ./android update sdk -u -t build-tools-17.0.0
Error: Ignoring unknown package filter 'build-tools-17.0.0'
Warning: The package filter removed all packages. There is nothing to install.
         Please consider trying to update again without a package filter.
$ ./android update sdk -a -u -t build-tools-17.0.0
Packages selected for install:
- Android SDK Build-tools, revision 17

可能缺少构建工具和 android-17 平台是找不到属性文件的原因。

我在这里看到了 travis-lint 的解决方法,我不使用它。


这是我用于日志的当前工作,需要改进但适用-e于模拟器。您需要自定义您的MOD_NAME.

# adb -e: direct an adb command to the only running emulator. Return an error if more than one.

before_script:   
  # - echo 'LOGCAT'   
  # Check logcat debug output: http://developer.android.com/tools/help/logcat.html
  # Check debugging log: http://developer.android.com/tools/debugging/debugging-log.html
  # Comment the lines belows to debug output and redirect it to a file. Custom tags for your app.
  - adb -e logcat *:W | tee logcat.log > /dev/null 2>&1 &

after_failure:
  # - echo 'FAILURE'
  # Check apt configuration: http://docs.travis-ci.com/user/ci-environment/#apt-configuration
  # Comment out the lines below to show log about tests with app name customized on exports section.
  - sudo apt-get install -qq lynx
  - export MOD_NAME=yourappmodulename
  - export LOG_DIR=${TRAVIS_BUILD_DIR}/${MOD_NAME}/build/outputs/reports/androidTests/connected/
  - lynx --dump ${LOG_DIR}com.android.builder.testing.ConnectedDevice.html > myConnectedDevice.log
  - lynx --dump ${LOG_DIR}com.android.builder.testing.html > myTesting.log
  - for file in *.log; do echo "$file"; echo "====================="; cat "$file"; done || true

after_script:
  # Uncomment the line below to kill adb and show logcat output.
  - echo " LOGCAT "; echo "========"; cat logcat.log; pkill -KILL -f adb

我正在寻找一个预安装的替代方案,lynx因为sudo它不能使用基于容器的基础设施,并且cat真的用于连接文件,如果有人知道改进它,谢谢。

于 2014-11-28T06:58:16.497 回答
0

经过一些额外的尝试,我可以通过以下任一方式获得 logcat:

 #build 25
 #run all tests 
  - mvn clean install -DskipTests=false
 #build 26
  - adb logcat &

在 before_install tr​​avis 阶段。

我绕过了 Travis 的 mvn install -DskipTests=true 。尽管如此,我无法在常规构建期间获得任何方法来获取 logcat。任何想法 ?

于 2013-03-26T19:41:48.843 回答