-
Notifications
You must be signed in to change notification settings - Fork 508
139 lines (118 loc) · 4.05 KB
/
daos_tests.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2024, Intel Corporation
#
name: DAOS tests
on:
push:
permissions: {}
env:
DAOS_BUILD: 0
DAOS_PATH: /opt/daos/
jobs:
daos_test:
name: DAOS tests
runs-on: ubuntu-latest
steps:
- name: Clone the DAOS repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
repository: daos-stack/daos
ref: release/2.6
path: daos
- name: Clone the PMDK repo
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
repository: pmem/pmdk
path: pmdk
- name: Apply DAOS patches
if: ${{ env.DAOS_BUILD == 1 }}
working-directory: daos
run: git apply ../pmdk/src/test/daos_dtx/*.patch
- name: Install DAOS' dependencies
working-directory: daos
run: |
sudo pip install -r requirements-build.txt
sudo utils/scripts/install-ubuntu.sh
# https://go.dev/doc/install
- name: Update the golang package
if: ${{ env.DAOS_BUILD == 1 }}
env:
GOLANG_VER: go1.23.1 # >= 1.21 because of https://go.dev/doc/toolchain
run: |
sudo apt-get remove golang-go
wget https://go.dev/dl/${{ env.GOLANG_VER }}.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf ${{ env.GOLANG_VER }}.linux-amd64.tar.gz
- name: Install Valgrind
working-directory: pmdk/utils/docker/images/
run: sudo ./install-valgrind.sh
- name: Generate ${{ env.OPTS_FILE }}
if: ${{ env.DAOS_BUILD == 1 }}
working-directory: daos
env:
OPTS_FILE: daos.conf
run: |
cat <<-EOF >> ${{ env.OPTS_FILE }}
BUILD_TYPE = 'debug'
TARGET_TYPE = 'debug'
PREFIX = '${{ env.DAOS_PATH }}'
GO_BIN = '/usr/local/go/bin/go'
EOF
cat ${{ env.OPTS_FILE }}
- name: Build DAOS
if: ${{ env.DAOS_BUILD == 1 }}
working-directory: daos
run: |
git submodule init
git submodule update
scons install -j16 --build-deps=yes
# - name: Tree ${{ env.DAOS_PATH }}
# working-directory: ${{ env.DAOS_PATH }}
# run: |
# sudo apt-get install tree
# tree
- name: Save ${{ env.DAOS_PATH }} as cache
if: ${{ env.DAOS_BUILD == 1 }}
uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: ${{ env.DAOS_PATH }}
key: opt_daos
- name: Restore ${{ env.DAOS_PATH }} from cache
if: ${{ env.DAOS_BUILD == 0 }}
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: ${{ env.DAOS_PATH }}
key: opt_daos
# - name: Upload ${{ env.DAOS_PATH }} as artifact
# uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
# with:
# name: opt_daos
# path: ${{ env.DAOS_PATH }}
- name: Install PMDK's dependencies
run: sudo apt-get install libndctl-dev libdaxctl-dev pandoc
- name: Build PMDK
working-directory: pmdk
run: utils/gha-runners/build-pmdk.sh
- name: Create testconfig files
working-directory: pmdk
env:
PMEM_FS_DIR: /dev/shm
PMEM_FS_DIR_FORCE_PMEM: 1
run: |
utils/create-testconfig.sh
for testconfig in src/test/testconfig.{sh,py}; do
echo "$testconfig"
cat $testconfig
echo
done
- name: Run the daos_dtx tests
working-directory: pmdk/src/test
run: |
export PATH=${{ env.DAOS_PATH }}/bin:$PATH
export LD_LIBRARY_PATH=${{ env.DAOS_PATH }}/prereq/debug/ofi/lib:$LD_LIBRARY_PATH
./RUNTESTS.py daos_dtx
- name: Upload test results as artifact
if: failure()
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: daos_dtx
path: pmdk/src/test/daos_dtx