Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Switching out AppVeyor for GH workflow" #185

Merged
merged 1 commit into from
Feb 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions .github/workflows/pr-build.yml

This file was deleted.

23 changes: 23 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: '1.0.{build}'
image: Visual Studio 2017
init:
# Good practise, because Windows line endings are different from Unix/Linux ones
- cmd: git config --global core.autocrlf true
before_build:
# Display .NET Core version
- cmd: dotnet --version
build_script:
# output will be in ./src/bin/debug/netcoreapp1.1/publish
- cmd: dotnet restore sdk/AWSXRayRecorder.sln
- cmd: dotnet build sdk/AWSXRayRecorder.sln
clone_depth: 1
test_script:
- cmd : dotnet test sdk/test/UnitTests
deploy: off
notifications:
- provider: Email
to:
- [email protected]
on_build_success: false
on_build_failure: true
on_build_status_changed: false