-
Notifications
You must be signed in to change notification settings - Fork 728
44 lines (41 loc) · 942 Bytes
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Build
on:
push:
branches: [master, devel, DPVS-1.8-LTS]
release:
branches: [master]
types: [published]
schedule:
- cron: '30 2 * * 1'
pull_request:
branches: [master, devel, DPVS-1.8-LTS]
types: [labeled]
jobs:
build-basic:
runs-on: self-hosted
env:
PKG_CONFIG_PATH: /data/dpdk/dpdklib/lib64/pkgconfig
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: build
run: make -j
build-all:
runs-on: self-hosted
env:
PKG_CONFIG_PATH: /data/dpdk/dpdklib/lib64/pkgconfig
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Config
run: sed -i 's/=n$/=y/' config.mk
- name: build
run: make -j