-
Notifications
You must be signed in to change notification settings - Fork 70
42 lines (33 loc) · 1.06 KB
/
kernel-mainline.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
name: DAHDI Kernel CI for mainline kernel
on:
schedule:
- cron: 00 02 * * *
pull_request:
jobs:
kernel_test:
runs-on: ubuntu-latest
steps:
- name: Cache kernel git repo
id: cache-kernel-git
uses: actions/cache@v3
with:
path: ./linux
key: kernel-mainline-git-cache
- if: ${{ steps.cache-kernel-git.outputs.cache-hit != 'true' }}
name: Clone Kernel repo
run: git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
- name: Update kernel git
run: git fetch
working-directory: ./linux
- name: Switch to desired branch
run: git checkout master
working-directory: ./linux
- name: Fetch dahdi-linux
uses: actions/checkout@v3
with:
path: dahdi-linux
- name: Create build container
run: docker build ./ci -t dahdi-builder
working-directory: ./dahdi-linux
- name: Build dahdi-linux
run: "docker run -v ${PWD}/dahdi-linux:/src -v ${PWD}/linux:/linux dahdi-builder"