-
Notifications
You must be signed in to change notification settings - Fork 510
87 lines (75 loc) · 2.2 KB
/
nightly.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
# Run less frequently used OSes and checks.
name: Nightly
on:
workflow_dispatch:
schedule:
# run this job at 23:00 UTC every other day
- cron: '0 23 */2 * *'
push:
tags:
- '*'
env:
GITHUB_REPO: pmem/pmdk
DOCKER_REPO: ghcr.io/pmem/pmdk
HOST_WORKDIR: /home/runner/work/pmdk/pmdk
WORKDIR: utils/docker
PMDK_CC: gcc
PMDK_CXX: g++
SRC_CHECKERS: 0
permissions: {}
jobs:
in-tree:
name: In-tree
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
CONFIG: [
"OS=ubuntu OS_VER=22.04",
"OS=opensuse-leap OS_VER=15",
"OS=rockylinux OS_VER=8",
"OS=rockylinux OS_VER=9",
]
TEST_BUILD: [debug, nondebug]
steps:
- name: Clone the git repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 50
- name: Get system information
run: ./$WORKDIR/get-system-info.sh
- name: Pull the image
run: cd $WORKDIR && ${{ matrix.CONFIG }} ./pull-or-rebuild-image.sh
- name: Run the build
run: cd $WORKDIR && ${{ matrix.CONFIG }}
TEST_BUILD=${{ matrix.TEST_BUILD }} ./build-CI.sh
packaging:
name: Packaging
needs: in-tree
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
CONFIG: [
"OS=ubuntu OS_VER=22.04 PMDK_CC=clang PMDK_CXX=clang++",
"OS=ubuntu OS_VER=22.04",
"OS=opensuse-leap OS_VER=15",
"OS=rockylinux OS_VER=8",
"OS=rockylinux OS_VER=9",
]
steps:
- name: Clone the git repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 50
- name: Get system information
run: ./$WORKDIR/get-system-info.sh
- name: Pull the image
run: cd $WORKDIR && ${{ matrix.CONFIG }} ./pull-or-rebuild-image.sh
- name: Run the build
env:
MAKE_PKG: 1
VALGRIND: 0
EXPERIMENTAL: 0
NDCTL_ENABLE: y
run: cd $WORKDIR && ${{ matrix.CONFIG }} ./build-CI.sh