File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33name : CI with Make
44
55on :
6- # workflow_dispatch:
7- push :
8- branches : [ "mcp-dev" ]
9- pull_request :
10- branches : [ "mcp-dev" ]
6+ workflow_dispatch :
7+ # push:
8+ # branches: [ "mcp-dev" ]
9+ # pull_request:
10+ # branches: [ "mcp-dev" ]
1111
1212jobs :
1313 build :
Original file line number Diff line number Diff line change 1111
1212jobs :
1313 mcp-test :
14- runs-on : macos-26
14+ runs-on : ubuntu-24.04
1515
1616 env :
1717 JVM_MEM_MIN : 512m
@@ -28,13 +28,18 @@ jobs:
2828 cache : maven
2929
3030 - name : Install dependencies
31- run : brew install autoconf automake git maven pkg-config
31+ run : |
32+ sudo apt-get update
33+ sudo apt-get install -y \
34+ auditd autoconf automake bison clang cmake curl flex fuse \
35+ git ifupdown libaudit-dev libfuse-dev \
36+ lsof maven pkg-config unzip uthash-dev wget
3237
3338 - name : Configure
3439 run : ./configure
3540
3641 - name : Build
37- run : make
42+ run : make KERNEL_MODULES=true
3843
3944 - name : Install PostgreSQL
4045 run : bin/installPostgres
You can’t perform that action at this time.
0 commit comments