2014-12-09 3 views
0
АПК

Нового Дженкинс и пытаюсь создать сборку с помощью муравейДженкинс строить с муравьем не создает файл

У меня есть следующая структура проекта.

-workspace 
-- project-A 
-- project-B (Lib project used by project-A) 

Я побежал следующую команду, которую я нашел на сайте Дженкинс https://wiki.jenkins-ci.org/display/JENKINS/Building+an+Android+app+and+test+project

android update project -p project-A 

android update lib-project --target "Google Inc.:Google APIs:18" --path project-B 

Это создает файл build.xml и файлы свойств.

Я использую git. Поэтому убедитесь, что все проверено.

Когда я пытаюсь построить проект, я получаю результат с успехом, но файл APK не выводится. Я проверил, что у меня есть «Действие после сборки» в «Архивировать артефакты».

Вот мой выход из Jenkins для сборки

Started by user anonymous 
Building in workspace /Users/Shared/Jenkins/Home/jobs/Test.Android/workspace 
> git rev-parse --is-inside-work-tree # timeout=10 
Fetching changes from the remote Git repository 
> git config remote.origin.url ssh://[email protected]/************* # timeout=10 
Fetching upstream changes from ssh://[email protected]/************* 
> git --version # timeout=10 
using GIT_SSH to set credentials 
> git fetch --tags --progress ssh://[email protected]************/************* +refs/heads/*:refs/remotes/origin/* 
> git rev-parse refs/remotes/origin/master^{commit} # timeout=10 
> git rev-parse refs/remotes/origin/origin/master^{commit} # timeout=10 
Checking out Revision a5bcdc51c07300aa18244049bcf80b1282ff55d6 (refs/remotes/origin/master) 
> git config core.sparsecheckout # timeout=10 
> git checkout -f a5bcdc51c07300aa18244049bcf80b1282ff55d6 
> git rev-list a5bcdc51c07300aa18244049bcf80b1282ff55d6 # timeout=10 
[workspace] $ /Users/Shared/Jenkins/Home/tools/hudson.tasks.Ant_AntInstallation/Apache_Ant/bin/ant -file Project-A 
Buildfile: /Users/Shared/Jenkins/Home/jobs/Test.Android/workspace/Project-A/build.xml 

help: 
    [echo] Android Ant Build. Available targets: 
    [echo] help:  Displays this help. 
    [echo] clean:  Removes output files created by other targets. 
    [echo]    This calls the same target on all dependent projects. 
    [echo]    Use 'ant nodeps clean' to only clean the local project 
    [echo] debug:  Builds the application and signs it with a debug key. 
    [echo]    The 'nodeps' target can be used to only build the 
    [echo]    current project and ignore the libraries using: 
    [echo]    'ant nodeps debug' 
    [echo] release: Builds the application. The generated apk file must be 
    [echo]    signed before it is published. 
    [echo]    The 'nodeps' target can be used to only build the 
    [echo]    current project and ignore the libraries using: 
    [echo]    'ant nodeps release' 
    [echo] instrument:Builds an instrumented package and signs it with a 
    [echo]    debug key. 
    [echo] test:  Runs the tests. Project must be a test project and 
    [echo]    must have been built. Typical usage would be: 
    [echo]     ant [emma] debug install test 
    [echo] emma:  Transiently enables code coverage for subsequent 
    [echo]    targets. 
    [echo] install: Installs the newly build package. Must either be used 
    [echo]    in conjunction with a build target (debug/release/ 
    [echo]    instrument) or with the proper suffix indicating 
    [echo]    which package to install (see below). 
    [echo]    If the application was previously installed, the 
    [echo]    application is reinstalled if the signature matches. 
    [echo] installd: Installs (only) the debug package. 
    [echo] installr: Installs (only) the release package. 
    [echo] installi: Installs (only) the instrumented package. 
    [echo] installt: Installs (only) the test and tested packages (unless 
    [echo]    nodeps is used as well. 
    [echo] uninstall: Uninstalls the application from a running emulator or 
    [echo]    device. Also uninstall tested package if applicable 
    [echo]    unless 'nodeps' is used as well. 

BUILD SUCCESSFUL 
Total time: 0 seconds 
Archiving artifacts 
Finished: SUCCESS 

В Дженкинс я не проверить в моих мусорных папках. Из-за каких-либо проблем?

Любая помощь была бы принята с благодарностью. Заранее спасибо

ответ

0

Вы добавили действие Post-build, называемое Архивом артефактов?

0

Проблема была связана с самой сборкой. По какой-то причине это приносило успех, даже если ничего не строилось. Мне нужно изменить еще несколько настроек, чтобы заставить его работать. Также на странице конфигурации нужно было указать отладку или выпуск в разделе Build -> Invoke Ant -> Targetets

Также в библиотечных проектах отсутствовали файлы build.xml. Поэтому, как только я создал все файлы build.xml и добавил цели, он, кажется, создает файл apk и может загрузить его сейчас.

Спасибо за вашу помощь

Смежные вопросы