Skip to content
This repository has been archived by the owner on Dec 19, 2018. It is now read-only.

Commit

Permalink
[automated] Change default branch to master
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate McMaster (automated) committed Jul 2, 2018
1 parent f9d1458 commit 86bfb3b
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Expand Up @@ -2,7 +2,7 @@ init:
- git config --global core.autocrlf true
branches:
only:
- dev
- master
- /^release\/.*$/
- /^(.*\/)?ci-.*$/
build_script:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -16,7 +16,7 @@ addons:
- libunwind8
branches:
only:
- dev
- master
- /^release\/.*$/
- /^(.*\/)?ci-.*$/
before_install:
Expand Down
4 changes: 2 additions & 2 deletions .vsts-pipelines/builds/ci-internal.yml
@@ -1,13 +1,13 @@
trigger:
- dev
- master
- release/*

resources:
repositories:
- repository: buildtools
type: git
name: aspnet-BuildTools
ref: refs/heads/dev
ref: refs/heads/master

phases:
- template: .vsts-pipelines/templates/project-ci.yml@buildtools
6 changes: 3 additions & 3 deletions .vsts-pipelines/builds/ci-public.yml
@@ -1,5 +1,5 @@
trigger:
- dev
- master
- release/*

# See https://github.com/aspnet/BuildTools
Expand All @@ -9,7 +9,7 @@ resources:
type: github
endpoint: DotNet-Bot GitHub Connection
name: aspnet/BuildTools
ref: refs/heads/dev
ref: refs/heads/master

phases:
- template: .vsts-pipelines/templates/project-ci.yml@buildtools
4 changes: 2 additions & 2 deletions korebuild.json
@@ -1,4 +1,4 @@
{
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json",
"channel": "dev"
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/master/tools/korebuild.schema.json",
"channel": "master"
}
6 changes: 3 additions & 3 deletions run.ps1
Expand Up @@ -52,8 +52,8 @@ in the file are overridden by command line parameters.
Example config file:
```json
{
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json",
"channel": "dev",
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/master/tools/korebuild.schema.json",
"channel": "master",
"toolsSource": "https://aspnetcore.blob.core.windows.net/buildtools"
}
```
Expand Down Expand Up @@ -192,7 +192,7 @@ if (!$DotNetHome) {
else { Join-Path $PSScriptRoot '.dotnet'}
}

if (!$Channel) { $Channel = 'dev' }
if (!$Channel) { $Channel = 'master' }
if (!$ToolsSource) { $ToolsSource = 'https://aspnetcore.blob.core.windows.net/buildtools' }

# Execute
Expand Down
2 changes: 1 addition & 1 deletion run.sh
Expand Up @@ -248,7 +248,7 @@ if [ -f "$config_file" ]; then
[ ! -z "${config_tools_source:-}" ] && tools_source="$config_tools_source"
fi

[ -z "$channel" ] && channel='dev'
[ -z "$channel" ] && channel='master'
[ -z "$tools_source" ] && tools_source='https://aspnetcore.blob.core.windows.net/buildtools'

get_korebuild
Expand Down

0 comments on commit 86bfb3b

Please sign in to comment.