Skip to content

Commit 74c4d5c

Browse files
authored
Merge pull request #35 from launchdarkly/eb/ch22788/circle2
migrate to CircleCI 2
2 parents 1140deb + 3b1cc5c commit 74c4d5c

File tree

2 files changed

+19
-13
lines changed

2 files changed

+19
-13
lines changed

.circleci/config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
workflows:
3+
version: 2
4+
test:
5+
jobs:
6+
- test-1.1
7+
jobs:
8+
test-1.1:
9+
docker:
10+
- image: microsoft/dotnet:1.1-sdk
11+
steps:
12+
- run:
13+
name: install packages
14+
command: apt-get -q update && apt-get install -qy awscli
15+
- checkout
16+
- run: aws s3 cp s3://launchdarkly-pastebin/ci/dotnet/LaunchDarkly.EventSource.snk LaunchDarkly.EventSource.snk
17+
- run: dotnet restore
18+
- run: dotnet build src/LaunchDarkly.EventSource -f netstandard1.4
19+
- run: dotnet test test/LaunchDarkly.EventSource.Tests/LaunchDarkly.EventSource.Tests.csproj -f netcoreapp1.1

circle.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)