Skip to content

test: remove libpmemlog tests and examples #120

test: remove libpmemlog tests and examples

test: remove libpmemlog tests and examples #120

Workflow file for this run

# Run short and medium tests (as defined in test frameworks), equivalent to 'make check'.
#
# This workflow is run on 'self-hosted' runners.
name: PMEM check
on: [push, pull_request, workflow_dispatch]
jobs:
linux:
name: PMEM_check
if: github.repository == 'pmem/pmdk'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [[self-hosted, rhel],[self-hosted, opensuse]]
config: ['check TEST_BUILD=debug',
'check TEST_BUILD=nondebug',
'check TEST_BUILD=static-debug',
'check TEST_BUILD=static-nondebug',
'pycheck TEST_BUILD=debug',
'pycheck TEST_BUILD=release',
'pycheck TEST_BUILD=static_debug',
'pycheck TEST_BUILD=static_release']
env:
WORKDIR: utils/gha-runners
steps:
- name: Clone the git repo
uses: actions/checkout@v3
- name: Get system information
run: ./$WORKDIR/get-system-info.sh
- name: Build
run: ./$WORKDIR/build-pmdk.sh
- name: Create testconfig files
run: ./$WORKDIR/create-testconfig.sh
- name: Run tests
run: make ${{ matrix.config }}