This is an automated email from the ASF dual-hosted git repository. chesnay pushed a commit to branch debug_snapshots in repository https://gitbox.apache.org/repos/asf/flink.git
commit f00afa85986e5658b51d46b3a114750938afe8fb Author: Chesnay Schepler <[email protected]> AuthorDate: Mon Jul 26 09:28:36 2021 +0200 only run snapshot deplüoyment --- tools/azure-pipelines/build-apache-repo.yml | 31 +++-------------------------- 1 file changed, 3 insertions(+), 28 deletions(-) diff --git a/tools/azure-pipelines/build-apache-repo.yml b/tools/azure-pipelines/build-apache-repo.yml index 37679d8..a658356 100644 --- a/tools/azure-pipelines/build-apache-repo.yml +++ b/tools/azure-pipelines/build-apache-repo.yml @@ -60,37 +60,12 @@ stages: # CI / PR triggered stage: - stage: ci displayName: "CI build (custom builders)" - condition: not(eq(variables['Build.Reason'], in('Schedule', 'Manual'))) jobs: - - template: jobs-template.yml + - template: build-nightly-dist.yml parameters: - stage_name: ci - test_pool_definition: - name: Default - e2e_pool_definition: - vmImage: 'ubuntu-20.04' - environment: PROFILE="-Dhadoop.version=2.8.3 -Dinclude_hadoop_aws -Dscala-2.11" - run_end_to_end: false + stage_name: cron_snapshot_deployment + environment: PROFILE="" container: flink-build-container - jdk: 8 - - job: docs_404_check # run on a MSFT provided machine - pool: - vmImage: 'ubuntu-20.04' - steps: - # Skip docs check if this is a pull request that doesn't contain a documentation change - - bash: | - source ./tools/azure-pipelines/build_properties.sh - pr_contains_docs_changes - if [[ "$?" == 0 ]] ; then - echo "##[debug]This pull request doesn't contain a documentation change. Skipping docs check." - echo "##vso[task.setvariable variable=skip;]1" - else - echo "##[debug]This pull request contains a documentation change. Running docs check." - echo "##vso[task.setvariable variable=skip;]0" - fi - displayName: Check if PR contains docs change - - script: ./tools/ci/docs.sh - condition: not(eq(variables['SKIP'], '1')) # Special stage for nightly builds: - stage: cron_build displayName: "Cron build"
