My drone pipeline cant build start a trigger builds

Hello community, I have a Drone CI set up but my drone pipeline cant build start a trigger builds. The expected behavior is that your build pipeline will execute, I had enable debug mode by setting the DRONE_LOGS_DEBUG=true

My drone.yml


kind: pipeline
type: docker
name: tests-stable

steps:

  • name: gplay
    image: Package continuous-integration-android8 · GitHub
    privileged: true
    environment:
    LOG_USERNAME:
    from_secret: LOG_USERNAME
    LOG_PASSWORD:
    from_secret: LOG_PASSWORD
    GIT_USERNAME:
    from_secret: GIT_USERNAME
    GIT_TOKEN:
    from_secret: GIT_TOKEN
    commands:
    • scripts/checkIfRunDrone.sh $GIT_USERNAME $GIT_TOKEN $DRONE_PULL_REQUEST || exit 0
    • emulator -avd android -no-snapshot -gpu swiftshader_indirect -no-window -no-audio -skin 500x833 &
    • sed -i s’#false#true#'g src/main/res/values/setup.xml
    • sed -i s"#server#server#" gradle.properties
    • sed -i s"#1#5#" ./src/androidTest/java/com/nextcloud/client/RetryTestRule.kt
    • ./gradlew assembleGplay
    • ./gradlew assembleGplayDebug
    • scripts/wait_for_emulator.sh
    • scripts/deleteOldComments.sh “stable” “Unit” $DRONE_PULL_REQUEST $GIT_TOKEN
    • ./gradlew jacocoTestGplayDebugUnitTestReport || scripts/uploadReport.sh $LOG_USERNAME $LOG_PASSWORD $DRONE_BUILD_NUMBER “stable” “Unit” $DRONE_PULL_REQUEST $GIT_TOKEN
    • ./gradlew installGplayDebugAndroidTest
    • scripts/wait_for_server.sh “server”
    • scripts/deleteOldComments.sh “stable” “IT” $DRONE_PULL_REQUEST $GIT_TOKEN
    • ./gradlew createGplayDebugCoverageReport -Pcoverage -Pandroid.testInstrumentationRunnerArguments.notAnnotation=com.owncloud.android.utils.ScreenshotTest || scripts/uploadReport.sh $LOG_USERNAME $LOG_PASSWORD $DRONE_BUILD_NUMBER “stable” “IT” $DRONE_PULL_REQUEST $GIT_TOKEN
    • ./gradlew combinedTestReport
  • name: notify
    image: drillster/drone-email
    settings:
    port: 587
    from: nextcloud-drone@kaminsky.me
    recipients_only: true
    username:
    from_secret: EMAIL_USERNAME
    password:
    from_secret: EMAIL_PASSWORD
    recipients:
    from_secret: EMAIL_RECIPIENTS
    host:
    from_secret: EMAIL_HOST
    when:
    event:
    - push
    status:
    - failure
    branch:
    - master
    - stable-*

services:

  • name: server
    image: nextcloudci/server:server-17 # also change in updateScreenshots.sh
    environment:
    EVAL: true
    commands:
    • BRANCH=‘stable22’ /usr/local/bin/initnc.sh
    • echo 127.0.0.1 server >> /etc/hosts
    • su www-data -c “OC_PASS=user1 php /var/www/html/occ user:add --password-from-env --display-name=‘User One’ user1”
    • su www-data -c “OC_PASS=user2 php /var/www/html/occ user:add --password-from-env --display-name=‘User Two’ user2”
    • su www-data -c “OC_PASS=user3 php /var/www/html/occ user:add --password-from-env --display-name=‘User Three’ user3”
    • su www-data -c “php /var/www/html/occ user:setting user2 files quota 1G”
    • su www-data -c “php /var/www/html/occ group:add users”
    • su www-data -c “php /var/www/html/occ group:adduser users user1”
    • su www-data -c “php /var/www/html/occ group:adduser users user2”
    • su www-data -c “git clone -b stable22 GitHub - nextcloud/activity: Activity app for Nextcloud /var/www/html/apps/activity/”
    • su www-data -c “php /var/www/html/occ app:enable activity”
    • su www-data -c “git clone -b stable22 GitHub - nextcloud/text: 📑 Collaborative document editing using Markdown /var/www/html/apps/text/”
    • su www-data -c “php /var/www/html/occ app:enable text”
    • su www-data -c “git clone -b stable22 GitHub - nextcloud/end_to_end_encryption: Server API to support End-to-End Encryption /var/www/html/apps/end_to_end_encryption/”
    • su www-data -c “php /var/www/html/occ app:enable end_to_end_encryption”
    • /usr/local/bin/run.sh

trigger:
branch:
- master
- stable-*
event:
- push
- pull_request

kind: pipeline
type: docker
name: tests-master

steps:

  • name: gplay
    image: Package continuous-integration-android8 · GitHub
    privileged: true
    environment:
    LOG_USERNAME:
    from_secret: LOG_USERNAME
    LOG_PASSWORD:
    from_secret: LOG_PASSWORD
    GIT_USERNAME:
    from_secret: GIT_USERNAME
    GIT_TOKEN:
    from_secret: GIT_TOKEN
    commands:

    • scripts/checkIfRunDrone.sh $GIT_USERNAME $GIT_TOKEN $DRONE_PULL_REQUEST || exit 0
    • emulator -avd android -no-snapshot -gpu swiftshader_indirect -no-window -no-audio -skin 500x833 &
    • sed -i s’#false#true#'g src/main/res/values/setup.xml
    • sed -i s"#1#5#" ./src/androidTest/java/com/nextcloud/client/RetryTestRule.kt
    • scripts/runCombinedTest.sh $GIT_USERNAME $GIT_TOKEN $DRONE_PULL_REQUEST $LOG_USERNAME $LOG_PASSWORD $DRONE_BUILD_NUMBER
  • name: notify
    image: drillster/drone-email
    settings:
    port: 587
    from: nextcloud-drone@kaminsky.me
    recipients_only: true
    username:
    from_secret: EMAIL_USERNAME
    password:
    from_secret: EMAIL_PASSWORD
    recipients:
    from_secret: EMAIL_RECIPIENTS
    host:
    from_secret: EMAIL_HOST
    when:
    event:
    - push
    status:
    - failure
    branch:
    - master
    - stable-*

services:

  • name: server
    image: nextcloudci/server:server-17 # also change in updateScreenshots.sh
    environment:
    EVAL: true
    commands:
    • /usr/local/bin/initnc.sh
    • echo 127.0.0.1 server >> /etc/hosts
    • su www-data -c “OC_PASS=user1 php /var/www/html/occ user:add --password-from-env --display-name=‘User One’ user1”
    • su www-data -c “OC_PASS=user2 php /var/www/html/occ user:add --password-from-env --display-name=‘User Two’ user2”
    • su www-data -c “OC_PASS=user3 php /var/www/html/occ user:add --password-from-env --display-name=‘User Three’ user3”
    • su www-data -c “php /var/www/html/occ user:setting user2 files quota 1G”
    • su www-data -c “php /var/www/html/occ group:add users”
    • su www-data -c “php /var/www/html/occ group:adduser users user1”
    • su www-data -c “php /var/www/html/occ group:adduser users user2”
    • su www-data -c “git clone -b master GitHub - nextcloud/activity: Activity app for Nextcloud /var/www/html/apps/activity/”
    • su www-data -c “php /var/www/html/occ app:enable activity”
    • su www-data -c “git clone -b master GitHub - nextcloud/text: 📑 Collaborative document editing using Markdown /var/www/html/apps/text/”
    • su www-data -c “php /var/www/html/occ app:enable text”
    • su www-data -c “git clone -b master GitHub - nextcloud/end_to_end_encryption: Server API to support End-to-End Encryption /var/www/html/apps/end_to_end_encryption/”
    • su www-data -c “php /var/www/html/occ app:enable end_to_end_encryption”
    • /usr/local/bin/run.sh

trigger:
branch:
- master
- stable-*
event:
- push
- pull_request


kind: pipeline
type: docker
name: allScreenshots

steps:

  • name: runAllScreenshots
    image: Package continuous-integration-android8 · GitHub
    privileged: true
    environment:
    GIT_USERNAME:
    from_secret: GIT_USERNAME
    GIT_TOKEN:
    from_secret: GIT_TOKEN
    LOG_USERNAME:
    from_secret: LOG_USERNAME
    LOG_PASSWORD:
    from_secret: LOG_PASSWORD
    commands:
    • emulator -avd android -no-snapshot -gpu swiftshader_indirect -no-window -no-audio -skin 500x833 &
    • sed -i s’#false#true#'g src/main/res/values/setup.xml
    • sed -i s’#showOnlyFailingTestsInReports = ciBuild#showOnlyFailingTestsInReports = false#’ build.gradle
    • scripts/wait_for_emulator.sh
    • scripts/runAllScreenshotCombinations noCI false
    • scripts/screenshotSummary.sh
  • name: notify
    image: drillster/drone-email
    settings:
    port: 587
    from: nextcloud-drone@kaminsky.me
    recipients_only: true
    username:
    from_secret: EMAIL_USERNAME
    password:
    from_secret: EMAIL_PASSWORD
    recipients:
    from_secret: EMAIL_RECIPIENTS
    host:
    from_secret: EMAIL_HOST
    when:
    event:
    - push
    status:
    - failure
    branch:
    - master
    - stable-*
    trigger:
    event:
    • cron
      cron:
    • allscreenshots

Hi @mashell33afams, did you check the suggestions in this loop: Slack

Do let me know if the issue is still there. We can help you out.

when you manually trigger a build, the event type is custom. Please be sure your trigger clause takes this into consideration, and does not filter out builds with type custom