Skip to content

Commit

Permalink
fix: adding dotnet 8 fixture (#4963)
Browse files Browse the repository at this point in the history
  • Loading branch information
dotkas committed Jan 12, 2024
1 parent 5a170a7 commit a4277ba
Show file tree
Hide file tree
Showing 8 changed files with 3,373 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .circleci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ RUN scripts/jvm-install.sh
ENV PATH=/home/circleci/.sdkman/candidates/scala/current/bin:/home/circleci/.sdkman/candidates/sbt/current/bin:/home/circleci/.sdkman/candidates/java/current/bin:$PATH

# install dotnet
RUN curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel 7.0
RUN curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel 8.0
ENV PATH=/home/circleci/.dotnet:$PATH
ENV TEMP=/tmp
ENV TMP=$TEMP
Expand Down
1 change: 1 addition & 0 deletions .circleci/chocolatey.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
<package id="make" version="4.4.1" />
<package id="gradle" version="8.1.1" />
<package id="python3" version="3.11.4" />
<package id="dotnet-sdk" version="8.0.100" />
</packages>
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ executors:
- image: alpine:3.17
docker-amd64:
docker:
- image: bastiandoetsch209/cli-build:20231012-101806
- image: bastiandoetsch209/cli-build:20231210-192113
working_directory: /mnt/ramdisk/snyk
resource_class: large
docker-arm64:
docker:
- image: bastiandoetsch209/cli-build-arm64:20231012-101806
- image: bastiandoetsch209/cli-build-arm64:20231210-192113
working_directory: /mnt/ramdisk/snyk
resource_class: arm.large
linux-ubuntu-mantic-amd64:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit a4277ba

Please sign in to comment.