Skip to content

Commit

Permalink
add newbuild.yml action to try getting the build action to work with …
Browse files Browse the repository at this point in the history
…the net6.0 workloads, no desktop msbuild involved
  • Loading branch information
ericsink committed Aug 26, 2021
1 parent a5e520e commit 33e4fac
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/newbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: .NET

on: workflow_dispatch

jobs:
build:

strategy:
matrix:
os: [windows-latest, macos-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
path: "SQLitePCL.raw"
- uses: actions/checkout@v2
with:
repository: ericsink/cb
path: "cb"
- name: Setup .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Setup .NET 3.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- name: Install T4
run: dotnet tool install --global dotnet-t4
- name: Build
run: |
cd SQLitePCL.raw/build
dotnet run

0 comments on commit 33e4fac

Please sign in to comment.