forked from ipdk-io/ipdk
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (41 loc) · 1022 Bytes
/
makefile-skip.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
name: 'CI'
on:
push:
branches:
- main
- ipdk_v*
paths-ignore:
- 'build/networking/**'
- 'build/networking_ebpf/**'
- 'build/scripts/**'
- 'build/storage/**'
pull_request:
branches:
- main
- ipdk_v*
paths-ignore:
- 'build/networking/**'
- 'build/networking_ebpf/**'
- 'build/scripts/**'
- 'build/storage/**'
concurrency:
# if workflow for PR or push is already running stop it, and start new one
group: makefile-ci-${{ github.ref }}
cancel-in-progress: true
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: shellcheck
run: make -C build shellcheck
build_containers:
needs: shellcheck
runs-on: ${{ matrix.runner }}
strategy:
matrix:
# for OCI runner change to: runner: [ubuntu-latest, self-hosted]
runner: [ubuntu-latest]
os: [ubuntu2004, fedora33, ebpf-ubuntu2004]
steps:
- run: 'echo "No build required"'