-
Notifications
You must be signed in to change notification settings - Fork 510
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5560 from skotlowskii/GHAlongUT_test
common: Add Long unittests
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |