Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
添加对PluginLoader的支持 Java搜索bug修复(Fix#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
JWJUN233233 committed Jan 18, 2023
2 parents 3b3fdeb + 5275466 commit 15536d1
Show file tree
Hide file tree
Showing 34 changed files with 79 additions and 1,465 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Build-Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: Results
path: WonderLab\bin\debug\net6.0
path: WonderLab\bin\release\net6.0
39 changes: 39 additions & 0 deletions .github/workflows/Build-macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build-macos

on:
push:
branches: [ "build", "main" ]

jobs:

build:
runs-on: macos-latest
env:
Solution_Name: WonderLabX.sln
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x

#- name: Setup MSBuild.exe
# uses: microsoft/[email protected]

# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test

- name: Build
run: dotnet build WonderLabX.sln --configuration Release

- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: Results
path: WonderLab\bin\release\net6.0
39 changes: 39 additions & 0 deletions .github/workflows/Build-ubuntu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build-ubuntu

on:
push:
branches: [ "build", "main" ]

jobs:

build:
runs-on: ubuntu-latest
env:
Solution_Name: WonderLabX.sln
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x

#- name: Setup MSBuild.exe
# uses: microsoft/[email protected]

# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test

- name: Build
run: dotnet build WonderLabX.sln --configuration Release

- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: Results
path: WonderLab\bin\release\net6.0
Binary file added WonderLab/ControlX.dll
Binary file not shown.
Binary file removed WonderLab/Resources/Tback.jpg
Binary file not shown.
Loading

0 comments on commit 15536d1

Please sign in to comment.