Compare commits

..
2 Commits
Author SHA1 Message Date
songyinyin 5953256c11 test github action v19 2023-10-25 16:02:55 +08:00
songyinyin 8d5b7edf12 test github action v18 add sql 2023-10-25 16:01:55 +08:00
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -12,7 +12,8 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
# see: https://docs.github.com/zh/actions/using-jobs/choosing-the-runner-for-a-job # see: https://docs.github.com/zh/actions/using-jobs/choosing-the-runner-for-a-job
os: ['ubuntu-20.04', 'macos-12'] # os: ['ubuntu-20.04', 'macos-12']
os: ['ubuntu-20.04']
name: build - ${{ matrix.os }} name: build - ${{ matrix.os }}
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
# https://github.com/softprops/action-gh-release/issues/236#issuecomment-1150530128 # https://github.com/softprops/action-gh-release/issues/236#issuecomment-1150530128
@@ -43,6 +43,7 @@ public class NeutrinoServerRuntimeNativeRegistrar implements RuntimeNativeRegist
@Override @Override
public void register(AppContext context, RuntimeNativeMetadata metadata) { public void register(AppContext context, RuntimeNativeMetadata metadata) {
metadata.registerResourceInclude("test.jks"); metadata.registerResourceInclude("test.jks");
metadata.registerResourceInclude("sql/.*");
// 使用 MP lambda 的类,需要注册序列化 // 使用 MP lambda 的类,需要注册序列化
metadata.registerLambdaSerialization(ClientConnectRecordService.class); metadata.registerLambdaSerialization(ClientConnectRecordService.class);