仿真平台内核初版 -tlib库 包含<sparc arm riscv powerPC>
This commit is contained in:
28
lib/BigGustave/.github/workflows/build-master-and-prs.yml
vendored
Normal file
28
lib/BigGustave/.github/workflows/build-master-and-prs.yml
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
name: .NET Core
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup .NET Core
|
||||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: '2.1.x'
|
||||
- name: Install dependencies
|
||||
working-directory: ./src
|
||||
run: dotnet restore
|
||||
- name: Build
|
||||
working-directory: ./src
|
||||
run: dotnet build --configuration Release --no-restore
|
||||
- name: Test
|
||||
working-directory: ./src
|
||||
run: dotnet test --no-restore --verbosity normal
|
||||
Reference in New Issue
Block a user