kind: pipeline name: check-app-compatbility steps: - name: check-app-compatbility image: nextcloudci/php7.1:php7.1-16 environment: APP_NAME: guests CORE_BRANCH: stable16 DB: sqlite commands: # Pre-setup steps - wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh - bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB - cd ../server # Code checker - ./occ app:check-code $APP_NAME -c strong-comparison - ./occ app:check-code $APP_NAME -c deprecation trigger: branch: - master - stable* event: - pull_request - push --- kind: pipeline name: frontend steps: - name: jsbuild image: mhart/alpine-node:6.8.0 commands: - apk add --no-cache make - make trigger: branch: - master - stable* event: - pull_request - push