Skip to content

Commit

Permalink
chore(ci): add .NET 7.0 to CI (influxdata#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar authored Nov 14, 2022
1 parent 75295d5 commit f92cafa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,9 @@ workflows:
dotnet-image: "mcr.microsoft.com/dotnet/sdk:5.0"
- tests-dotnet:
name: dotnet-6.0
- tests-dotnet:
name: dotnet-7.0
dotnet-image: "mcr.microsoft.com/dotnet/sdk:7.0"
- tests-windows:
name: dotnet-windows
- deploy-preview:
Expand All @@ -224,6 +227,7 @@ workflows:
- dotnet-3.1
- dotnet-5.0
- dotnet-6.0
- dotnet-7.0
- dotnet-windows
filters:
branches:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 4.8.0 [unreleased]

### CI
1. [#416](https://github.com/influxdata/influxdb-client-csharp/pull/416): Add build for `.NET 7.0`

### Dependencies
Update dependencies:

Expand Down
4 changes: 2 additions & 2 deletions Scripts/ci-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ else
TRX2JUNIT_VERSION="1.3.2"
fi

if [[ "$NET_TEST_VERSION" = "netcoreapp6.0" ]]
if [[ "$NET_TEST_VERSION" = "netcoreapp6.0" || "$NET_TEST_VERSION" = "netcoreapp7.0" ]]
then
TRX2JUNIT_VERSION="1.6.0"
TRX2JUNIT_VERSION="2.0.4"
else
dotnet sln remove Examples/ExampleBlazor/ExampleBlazor.csproj
fi
Expand Down

0 comments on commit f92cafa

Please sign in to comment.