Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/portability-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,14 @@ jobs:
EOF
working-directory: build

- name: Build Parallel test pack
run: |
su runner << 'EOF'
source load_modules.sh
cmake --build . --target Parallel --parallel $(nproc)
EOF
working-directory: build

- name: Run Continuous test pack
run: |
su runner << 'EOF'
Expand All @@ -100,3 +108,11 @@ jobs:
ctest -j $(nproc) -L Nightly --output-on-failure
EOF
working-directory: build

- name: Run Parallel test pack
run: |
su runner << 'EOF'
source load_modules.sh
ctest -L Parallel --output-on-failure
EOF
working-directory: build