From bc26fb49ebbb76fdbf497a680bf9c91192e87624 Mon Sep 17 00:00:00 2001 From: "Frank A. Krueger" Date: Thu, 19 Sep 2019 18:59:14 -0700 Subject: [PATCH] Fix build step --- .github/workflows/build.yml | 7 +++++-- Makefile | 1 - 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 510756b4..3c3eebd4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,13 +8,16 @@ jobs: runs-on: macOS-10.14 steps: - + - uses: actions/checkout@v1 + - name: Restore NuGets + run: nuget restore SQLite.sln + - name: Build and Test run: make test - - name: Make nuget + - name: Make NuGet run: | make nuget mkdir PackageOut diff --git a/Makefile b/Makefile index 95352dfe..7861312e 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,6 @@ test: tests/bin/Release/SQLite.Tests.dll tests/ApiDiff/bin/Release/ApiDiff.exe mono tests/ApiDiff/bin/Release/ApiDiff.exe tests/bin/Release/SQLite.Tests.dll: tests/SQLite.Tests.csproj $(SRC) - msbuild /p:Configuration=Release /t:Restore tests/SQLite.Tests.csproj msbuild /p:Configuration=Release tests/SQLite.Tests.csproj tests/ApiDiff/bin/Release/ApiDiff.exe: tests/ApiDiff/ApiDiff.csproj $(SRC)