Skip to content

array and mmapped log backends #344

array and mmapped log backends

array and mmapped log backends #344

Workflow file for this run

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: Set install root for Spack
run: |
spack -e tests config add config:install_tree:root:/opt/spack
spack -e tests config add view:/opt/view
- 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
make
ctest --output-on-failure
# - name: Push packages to buildcache and update index
# if: ${{ !cancelled() }}
# run: |
# export GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
# spack -e tests mirror set --push \
# --oci-username ${{ github.actor }} \
# --oci-password-variable GITHUB_TOKEN mochi-buildcache
# spack -e tests buildcache push --base-image ubuntu:22.04 \
# --unsigned --update-index mochi-buildcache