Skip to content

Commit

Permalink
Fix build step
Browse files Browse the repository at this point in the history
  • Loading branch information
praeclarum committed Sep 20, 2019
1 parent addb2a4 commit bc26fb4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit bc26fb4

Please sign in to comment.