Skip to content

Commit

Permalink
Merge pull request #5 from Azure/master
Browse files Browse the repository at this point in the history
Merge upstream
  • Loading branch information
NMijat1024 authored Apr 4, 2019
2 parents 751c9bb + 69b4864 commit 6a95380
Show file tree
Hide file tree
Showing 2,652 changed files with 2,584,295 additions and 879,444 deletions.
51 changes: 0 additions & 51 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

60 changes: 60 additions & 0 deletions .github/ISSUE_TEMPLATE/az-module-bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
---
name: Az module bug report
about: Report errors or unexpected behaviors for the Az module
title: ''
labels: ''
assignees: ''

---

<!--
- Make sure you are able to reproduce this issue on the latest released version of Az
- https://www.powershellgallery.com/packages/Az
- Please search the existing issues to see if there has been a similar issue filed
- For issue related to importing a module, please refer to our troubleshooting guide:
- https://github.com/Azure/azure-powershell/blob/master/documentation/troubleshoot-module-load.md
-->

## Description



## Steps to reproduce

```powershell
```

## Environment data

<!-- Please run $PSVersionTable and paste the output in the below code block -->

```
```

## Module versions

<!-- Please run (Get-Module -Name Az.* -ListAvailable) and paste the output in the below code block -->

```powershell
```

## Debug output

<!-- Set $DebugPreference='Continue' before running the repro and paste the resulting debug stream in the below code block -->

```
```

## Error output

<!-- Please run Resolve-AzureRmError and paste the output in the below code block -->

```
```
52 changes: 52 additions & 0 deletions .github/ISSUE_TEMPLATE/azurerm-module-bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
name: AzureRM module bug report
about: Report errors or unexpected behaviors for the AzureRM module
title: ''
labels: ''
assignees: ''

---

<!--
- The AzureRM module has been replaced by the Az module; please see the following document for more information:
- https://docs.microsoft.com/en-us/powershell/azure/new-azureps-module-az
- If you are able to, please migrate to the Az module and see if the issue is reproducible
- If so, please file an issue using the Az module template
- Please search the existing issues to see if there has been a similar issue filed
-->

## Description



## Steps to reproduce

```powershell
```

## Module versions

<!-- Please run (Get-Module -Name AzureRM* -ListAvailable) and paste the output in the below code block -->

```powershell
```

## Debug output

<!-- Set $DebugPreference='Continue' before running the repro and paste the resulting debug stream in the below code block -->

```
```

## Error output

<!-- Please run Resolve-AzureRmError and paste the output in the below code block -->

```
```
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Feature request
about: Suggest a new feature or improvement
title: ''
labels: Feature Request
assignees: ''

---

## Description of the new feature

## Proposed implementation details (optional)
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/internal-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Internal issue
about: Azure PowerShell team only
title: ''
labels: Azure PS Team
assignees: ''

---

## Description

## Cost
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Azure PowerShell specific
Net472Tests/
artifacts/
src/Stack/
src/local-artifacts/*
Expand Down
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ dotnet: 2.1.400
dist: trusty

env:
- NAME="azure-powershell-core" CONFIG="Debug"
- NAME="azure-powershell-core" CONFIG="Debug" TESTS_TO_RUN="Core"
- NAME="azure-powershell-core" CONFIG="Debug" TESTS_TO_RUN="NonCore"

services:
- docker
Expand All @@ -24,7 +25,7 @@ before_install:

# https://github.com/travis-ci/travis-ci/issues/1066#issuecomment-383489298
script:
- sudo dotnet msbuild build.proj /t:Full /p:ExcludeAuthenticators=true /p:Configuration=$CONFIG || travis_terminate 1
- sudo dotnet msbuild build.proj /t:Build;StaticAnalysis;Test /p:ExcludeAuthenticators=true;Configuration=$CONFIG;TestsToRun=$TESTS_TO_RUN

after_success:
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
Expand Down
Loading

0 comments on commit 6a95380

Please sign in to comment.