PMEM tests part 3 #24
This file contains hidden or 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
| # Run all tests on PMEM. | |
| # | |
| # This workflow is run on 'self-hosted' runners. | |
| name: PMEM tests part 3 | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # run this job at 6:00 UTC every Sunday | |
| - cron: '0 6 * * 0' | |
| permissions: {} | |
| jobs: | |
| # Test the default build with force-enabled Valgrind tooling for thread error | |
| # detection. | |
| Thread: | |
| uses: ./.github/workflows/pmem_test_matrix.yml | |
| with: | |
| force_enable: '["helgrind"]' | |
| valgrind: 1 | |
| # 24h = 1440m (arbitrarily picked in hope it will be enough). | |
| timeout_minutes: 1440 |