This repository was archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for feature branch builds on taskcluster
- Loading branch information
1 parent
49ffa84
commit 123cab0
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ tasks: | |
# testing only and should not be uploaded to App Stores. | ||
# | ||
############################################################################### | ||
- $if: 'tasks_for == "github-push" && event["ref"] == "refs/heads/master"' | ||
- $if: 'tasks_for == "github-push" && (event["ref"] == "refs/heads/master" || event["ref"][0:18] == "refs/heads/feature/")' | ||
then: | ||
provisionerId: 'aws-provisioner-v1' | ||
workerType: 'github-worker' | ||
|
@@ -94,7 +94,7 @@ tasks: | |
expires: {$fromNow: '1 month'} | ||
metadata: | ||
name: Firefox Reality for Android - Build - Master update | ||
description: Building Firefox Reality for Android (via Gradle) - triggered by update to master | ||
description: Building Firefox Reality for Android (via Gradle) - triggered by update to master or feature branch | ||
owner: [email protected] | ||
source: ${repository} | ||
############################################################################### | ||
|