-
Notifications
You must be signed in to change notification settings - Fork 1
67 lines (59 loc) · 1.74 KB
/
test.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
name: Unit tests
on:
workflow_dispatch: {}
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-22.04
permissions:
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup spack
uses: spack/[email protected]
with:
ref: develop
- name: Add mochi-spack-packages
run: |
git clone https://github.com/mochi-hpc/mochi-spack-packages
spack -e tests repo add mochi-spack-packages
- name: Installing spack environment
run: |
spack -e tests install
- name: Show spack-installed packages for debugging
run: |
spack -e tests find -dlv
- name: Build code and run unit tests
run: |
eval `spack env activate --sh tests`
mkdir build
cd build
cmake .. -DENABLE_TESTS=ON \
-DCMAKE_BUILD_TYPE=Debug \
-DENABLE_LEVELDB=ON \
-DENABLE_ROCKSDB=ON \
-DENABLE_BERKELEYDB=ON \
-DENABLE_TKRZW=ON \
-DENABLE_GDBM=ON \
-DENABLE_LMDB=ON \
-DENABLE_UNQLITE=ON \
-DENABLE_LUA=ON \
-DENABLE_PYTHON=ON \
-DENABLE_REMI=ON \
-DENABLE_YCSB=ON
make
ctest --output-on-failure
- name: Push packages to buildcache and update index
if: ${{ !cancelled() }}
run: |
spack -e tests mirror set --push \
--oci-username ${{ github.actor }} \
--oci-password "${{ secrets.GITHUB_TOKEN }}" mochi-buildcache
spack -e tests buildcache push --base-image ubuntu:22.04 \
--unsigned --update-index mochi-buildcache