Skip to content

Commit

Permalink
Merge pull request #5560 from skotlowskii/GHAlongUT_test
Browse files Browse the repository at this point in the history
common: Add Long unittests
  • Loading branch information
wlemkows authored Mar 28, 2023
2 parents 14c755f + ee51735 commit b354e0b
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/unittest_long.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Long_run_tests

on:
schedule:
- cron: '5 0 * * 6' # At 00:05 on Saturday.

jobs:
linux:
name: 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]]
env:
WORKDIR: utils/gha-runners

steps:

- name: Clone the git repo
uses: actions/checkout@v2

- 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 - Bash framework
run: |
cd src/test/ && ./RUNTESTS -t "long"
- name: Run tests - Python framework
run: |
cd src/test/ && ./RUNTESTS.py -t "long"

0 comments on commit b354e0b

Please sign in to comment.