Skip to content

Commit

Permalink
added ci
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfonba committed May 16, 2023
1 parent fadb919 commit a58a6c1
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,29 @@ jobs:
${{ matrix.intel-command }}
/bin/bash mfc.sh build -j $(nproc) ${{ matrix.debug }}
- name: Test Suite (Debug)
- name: Test Suite (Debug, Double Precision)
if: matrix.debug == '--debug'
run: |
${{ matrix.intel-command }}
/bin/bash mfc.sh test -j $(nproc) --debug
- name: Test Suite (No Debug)
- name: Test Suite (Debug, Single Precision)
if: matrix.debug == '--debug'
run: |
${{ matrix.intel-command }}
/bin/bash mfc.sh test -j $(nproc) --debug --single
- name: Test Suite (No Debug, Double Precision)
if: matrix.debug == '--no-debug'
run: |
${{ matrix.intel-command }}
/bin/bash mfc.sh test -j $(nproc) -a
- name: Test Suite (No Debug, Single Precision)
if: matrix.debug == '--no-debug'
run: |
${{ matrix.intel-command }}
/bin/bash mfc.sh test -j $(nproc) -a -single
self-cpu-release:
Expand Down

0 comments on commit a58a6c1

Please sign in to comment.