Skip to content

Commit

Permalink
chore(CirlcleCI): use netcoreapp2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
richardschneider committed Aug 15, 2019
1 parent 9ee6b15 commit 3e16510
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ jobs:
build:
working_directory: /temp
docker:
- image: microsoft/dotnet:2.1-sdk
- image: microsoft/dotnet:2.2-sdk
environment:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- checkout
- run: dotnet restore
- run: dotnet build -c Release --no-restore --framework netstandard2 ./src
- run: dotnet build -c Release --no-restore --framework netcoreapp2.1 ./IpfsServer
- run: dotnet build -c Release --no-restore --framework netcoreapp2.1 ./IpfsCli
- run: dotnet test --logger "console;verbosity=normal" -c Release --no-restore --framework netcoreapp2.1 ./test --filter TestCategory!=IPv6
- run: dotnet build -c Release --no-restore --framework netcoreapp2.2 ./IpfsServer
- run: dotnet build -c Release --no-restore --framework netcoreapp2.2 ./IpfsCli
- run: dotnet test --logger "console;verbosity=normal" -c Release --no-restore --framework netcoreapp2.12 ./test --filter TestCategory!=IPv6

# Circle CI does not completely support IPv6
# see https://discuss.circleci.com/t/ipv6-support/13571

0 comments on commit 3e16510

Please sign in to comment.