Skip to content

Commit 6845e41

Browse files
committed
[temp] Default CI to build additions fork branch for PR Azure#877
GitHub-triggered ADO PR runs can't set pipeline parameters interactively, so flip the defaults to point at the fork branch that contains the matching unpublished library snapshot: buildAdditionsFromSource: true additionsRepoUrl: https://github.com/ahmedmuhsin/azure-functions-java-additions.git additionsBranch: feat/http-response-bodystream REVERT THIS COMMIT before merge — once the companion PR (Azure/azure-functions-java-additions#55) lands and a matching `azure-functions-java-core-library` version is published to Maven Central, the defaults should return to: buildAdditionsFromSource: false additionsRepoUrl: https://github.com/Azure/azure-functions-java-additions.git additionsBranch: dev
1 parent be77bf4 commit 6845e41

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

eng/ci/public-build.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,27 @@ pr:
2121
# build a custom branch of azure-functions-java-additions (e.g. a fork) before
2222
# the worker's mvn build. Defaults to a no-op so normal PRs continue to resolve
2323
# the library from Maven Central.
24+
#
25+
# TEMPORARY: defaults are flipped to build the fork branch
26+
# (ahmedmuhsin/azure-functions-java-additions @ feat/http-response-bodystream)
27+
# so GitHub-triggered PR CI for #877 picks up the unpublished
28+
# `azure-functions-java-core-library:1.4.0-SNAPSHOT`. Revert to the upstream
29+
# defaults (buildAdditionsFromSource=false, Azure repo, dev branch) once the
30+
# companion PR (Azure/azure-functions-java-additions#55) is merged and a
31+
# matching library version is published to Maven Central.
2432
parameters:
2533
- name: buildAdditionsFromSource
2634
displayName: 'Build azure-functions-java-additions from source (instead of resolving from Maven Central)'
2735
type: boolean
28-
default: false
36+
default: true
2937
- name: additionsRepoUrl
3038
displayName: 'Git URL for azure-functions-java-additions (used only when buildAdditionsFromSource is true)'
3139
type: string
32-
default: 'https://github.com/Azure/azure-functions-java-additions.git'
40+
default: 'https://github.com/ahmedmuhsin/azure-functions-java-additions.git'
3341
- name: additionsBranch
3442
displayName: 'Branch of azure-functions-java-additions to build (used only when buildAdditionsFromSource is true)'
3543
type: string
36-
default: 'dev'
44+
default: 'feat/http-response-bodystream'
3745

3846
resources:
3947
repositories:

0 commit comments

Comments
 (0)