Skip to content

PMEM long

PMEM long #12

Workflow file for this run

# Run tests of type 'long' (as defined in test frameworks).
#
# This workflow is run on 'self-hosted' runners.
name: PMEM long
on:
workflow_dispatch:
schedule:
- cron: '5 0 * * 6' # At 00:05 on Saturday.
jobs:
linux:
name: PMEM_long
if: github.repository == 'pmem/pmdk'
runs-on: ${{ matrix.os }}
timeout-minutes: 960
strategy:
fail-fast: false
matrix:
os: [[self-hosted, rhel],[self-hosted, opensuse]]
script: ['sh', 'py']
build: [ 'debug', 'nondebug']
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 file
run: ./$WORKDIR/../create-testconfig.sh
- name: Run tests
run: cd src/test/ && ./RUNTESTS.${{ matrix.script }} -t long -b ${{ matrix.build }}