Access build folder in Xcode Server CI bot run (env variables?)

前端 未结 3 1344
名媛妹妹
名媛妹妹 2020-12-29 10:05

I need to access the folder that is created dynamically during each bot integration. On one of the run it is something like this -

/Library/Developer

3条回答
  •  醉梦人生
    2020-12-29 10:42

    I have been echoing set to the bot log, the first line of my bot script is simply

    set   
    

    When you view the log after the integration is complete it will be in your trigger output.

    XCS_ANALYZER_WARNING_CHANGE=0
    XCS_ANALYZER_WARNING_COUNT=0
    XCS_ARCHIVE=/Library/Developer/XcodeServer/Integrations/Integration-76eb5292bd7eff1bfe4160670c2d4576/Archive.xcarchive
    XCS_BOT_ID=4f7c7e65532389e2a741d29758466c18
    XCS_BOT_NAME='Reader'
    XCS_BOT_TINY_ID=00B0A7D
    XCS_ERROR_CHANGE=0
    XCS_ERROR_COUNT=0
    XCS_INTEGRATION_ID=76eb5292bd7eff1bfe4160670c2d4576
    XCS_INTEGRATION_NUMBER=15
    XCS_INTEGRATION_RESULT=warnings
    XCS_INTEGRATION_TINY_ID=FF39BC2
    XCS_OUTPUT_DIR=/Library/Developer/XcodeServer/Integrations/Integration-76eb5292bd7eff1bfe4160670c2d4576
    XCS_PRODUCT='Reader.ipa'
    XCS_SOURCE_DIR=/Library/Developer/XcodeServer/Integrations/Caches/4f7c7e65532389e2a741d29758466c18/Source
    XCS_TESTS_CHANGE=0
    XCS_TESTS_COUNT=0
    XCS_TEST_FAILURE_CHANGE=0
    XCS_TEST_FAILURE_COUNT=0
    XCS_WARNING_CHANGE=36
    XCS_WARNING_COUNT=36
    

提交回复
热议问题