mirrored from git://xenbits.xen.org/xen.git
-
Notifications
You must be signed in to change notification settings - Fork 331
42 lines (36 loc) · 1.18 KB
/
coverity.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
name: Coverity Scan
# We only want to test official release code, not every pull request.
on:
workflow_dispatch:
schedule:
- cron: '18 9 * * WED,SUN' # Bi-weekly at 9:18 UTC
jobs:
coverity:
runs-on: ubuntu-22.04
steps:
- name: Install build dependencies
run: |
sudo apt-get install -y wget git gawk \
libbz2-dev build-essential \
zlib1g-dev libncurses5-dev iasl \
libbz2-dev e2fslibs-dev uuid-dev ocaml \
ocaml-findlib libyajl-dev \
autoconf libtool liblzma-dev \
python3-dev golang libsystemd-dev
- uses: actions/checkout@v2
with:
ref: staging
- name: Configure Xen
run: |
./configure --with-system-qemu=/bin/true \
--with-system-seabios=/bin/true \
--with-system-ovmf=/bin/true
- name: Pre build stuff
run: |
make -j`nproc` mini-os-dir
- uses: vapier/coverity-scan-action@v1
with:
command: make -j`nproc` build-xen build-tools && make -j`nproc` -C extras/mini-os/
project: XenProject
email: ${{ secrets.COVERITY_SCAN_EMAIL }}
token: ${{ secrets.COVERITY_SCAN_TOKEN }}