Skip to content

Commit c68585e

Browse files
committed
feat: add CI
1 parent 32cf6f7 commit c68585e

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflow/build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Build ePass
2+
3+
on:
4+
push:
5+
branches: [ "main", "dev" ]
6+
7+
env:
8+
BUILD_TYPE: Release
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Install Dependency
18+
run: sudo apt install -y libbpf-dev
19+
20+
- name: Configure CMake
21+
run: cd core && make configure
22+
23+
- name: Build
24+
run: cd core && make
25+

0 commit comments

Comments
 (0)