-
Notifications
You must be signed in to change notification settings - Fork 6
111 lines (94 loc) · 3.14 KB
/
pipeline.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: "Krnlmon CI Pipeline"
on:
push:
branches:
- main
pull_request:
branches:
- main
- mev-ts*
workflow_dispatch:
concurrency:
# If workflow for PR or push is already running, stop it and start a new one.
group: build-${{ github.ref }}
cancel-in-progress: true
env:
#---------------------------------------------------------------------
# Environment variables
#---------------------------------------------------------------------
SDE_REPOSITORY: ipdk-io/p4dev.dpdk-sde
SDE_TAG: 2023.10.1
SDE_FILENAME: dpdk-sde-dev-ubuntu-20.04.tar.gz
SDE_INSTALL_DIR: /opt/p4dev/dpdk-sde
DEPS_REPOSITORY: ipdk-io/stratum-deps
DEPS_TAG: v1.3.4
DEPS_FILENAME: deps-ubuntu-1.3.4-x86_64.tar.gz
DEPS_INSTALL_DIR: /opt/p4dev/x86deps
PREREQS: libbsd-dev libnl-3-dev libnl-route-3-dev libnl-genl-3-dev
jobs:
#---------------------------------------------------------------------
# 1 - dpdk_build_and_test
#---------------------------------------------------------------------
dpdk_build_check:
runs-on: ubuntu-22.04
steps:
- name: Check out networking-recipe
uses: actions/checkout@v4
with:
repository: ipdk-io/networking-recipe
submodules: recursive
path: recipe
- name: Install dpdk-sde
uses: robinraju/[email protected]
with:
repository: ${{ env.SDE_REPOSITORY }}
tag: ${{ env.SDE_TAG }}
fileName: ${{ env.SDE_FILENAME }}
- run: |
sudo tar -xzf $SDE_FILENAME -C /
rm $SDE_FILENAME
- name: Install stratum-deps
uses: robinraju/[email protected]
with:
repository: ${{ env.DEPS_REPOSITORY }}
tag: ${{ env.DEPS_TAG }}
fileName: ${{ env.DEPS_FILENAME }}
- run: |
sudo tar -xzf $DEPS_FILENAME -C /
rm $DEPS_FILENAME
- name: Install prerequisites
run: |
sudo apt install $PREREQS
- name: Build krnlmon
working-directory: recipe/krnlmon/krnlmon
run: |
export DEPEND_INSTALL=$DEPS_INSTALL_DIR
export SDE_INSTALL=$SDE_INSTALL_DIR
cmake -B build -C dpdk.cmake
cmake --build build -j4 --target dummy_krnlmon
- name: Run unit tests
working-directory: recipe/krnlmon/krnlmon
run: |
export DEPEND_INSTALL=$DEPS_INSTALL_DIR
export SDE_INSTALL=$SDE_INSTALL_DIR
cmake --build build -j4 --target krnlmon-test
#---------------------------------------------------------------------
# 2 - check_clang_format
#---------------------------------------------------------------------
check_clang_format:
runs-on: ubuntu-22.04
steps:
- name: Check out krnlmon repository
uses: actions/checkout@v4
- name: Get list of changed Files
id: changed
uses: tj-actions/changed-files@v45
with:
files: |
**.c
**.h
**.cc
- name: Check for formatting errors
if: steps.changed.outputs.any_changed == 'true'
run: |
clang-format -n -Werror ${{ steps.changed.outputs.all_changed_files }}