Skip to content

Commit ddf1c2f

Browse files
committed
Use ubuntu 24 for mcp test
1 parent 89fc328 commit ddf1c2f

2 files changed

Lines changed: 13 additions & 8 deletions

File tree

.github/workflows/make.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
name: CI with Make
44

55
on:
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

1212
jobs:
1313
build:

.github/workflows/mcp-integration.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
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

0 commit comments

Comments
 (0)