From 9b449db06da77b3fb26630dd74926c6d23723268 Mon Sep 17 00:00:00 2001 From: OudomMunint Date: Mon, 15 Jul 2024 00:04:18 +1000 Subject: [PATCH] Removed redundant build step for CI. --- .github/workflows/main.yml | 5 +---- MyBenchmark.cs | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 80e091b..e319134 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -35,9 +35,6 @@ jobs: - name: Restore dependencies run: dotnet restore Benchmark.csproj - - name: Build Proj - run: dotnet build Benchmark.csproj -c Release -f net8.0 - - name: Build sln run: dotnet build Benchmark.sln -c Release -f net8.0 @@ -45,4 +42,4 @@ jobs: if: matrix.os == 'windows-latest' uses: ncipollo/release-action@v1.14.0 with: - tag: v1.4.9.5 \ No newline at end of file + tag: v1.4.9.6 \ No newline at end of file diff --git a/MyBenchmark.cs b/MyBenchmark.cs index cd13f8e..57eaccd 100644 --- a/MyBenchmark.cs +++ b/MyBenchmark.cs @@ -119,7 +119,7 @@ private void DoWork(int index) } } -public class GpuBenchmark + public class GpuBenchmark { private const int NumIterations = 1000; private Device? device;