Skip to content

Commit fa080cc

Browse files
authored
Merge pull request #832 from caic99/develop
Build: fix sanitizer test logic.
2 parents 4015c64 + b6dd3f1 commit fa080cc

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/dynamic.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ on:
44
schedule:
55
- cron: '0 3 * * *'
66
workflow_dispatch:
7-
inputs:
8-
name:
9-
description: 'Number of Cores to Run ABACUS'
10-
required: false
11-
default: '2'
127

138
jobs:
149
test:
@@ -19,14 +14,17 @@ jobs:
1914
steps:
2015
- name: Checkout
2116
uses: actions/checkout@v2
22-
- name: Build and Test
17+
- name: Building
2318
run: |
2419
cmake -B build -DENABLE_ASAN=1 -DBUILD_TESTING=ON -DENABLE_DEEPKS=1
2520
cmake --build build -j16
2621
cmake --install build
22+
- name: Testing
23+
run: |
2724
cmake --build build --target test ARGS="-V"
2825
- name: Publish Report to Dashboard
2926
uses: crazy-max/ghaction-github-pages@v2
27+
if: ${{ ! cancelled() }}
3028
with:
3129
target_branch: dashboard
3230
build_dir: html

0 commit comments

Comments
 (0)