We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4015c64 + b6dd3f1 commit fa080ccCopy full SHA for fa080cc
.github/workflows/dynamic.yml
@@ -4,11 +4,6 @@ on:
4
schedule:
5
- cron: '0 3 * * *'
6
workflow_dispatch:
7
- inputs:
8
- name:
9
- description: 'Number of Cores to Run ABACUS'
10
- required: false
11
- default: '2'
12
13
jobs:
14
test:
@@ -19,14 +14,17 @@ jobs:
19
steps:
20
15
- name: Checkout
21
16
uses: actions/checkout@v2
22
- - name: Build and Test
17
+ - name: Building
23
18
run: |
24
cmake -B build -DENABLE_ASAN=1 -DBUILD_TESTING=ON -DENABLE_DEEPKS=1
25
cmake --build build -j16
26
cmake --install build
+ - name: Testing
+ run: |
27
cmake --build build --target test ARGS="-V"
28
- name: Publish Report to Dashboard
29
uses: crazy-max/ghaction-github-pages@v2
+ if: ${{ ! cancelled() }}
30
with:
31
target_branch: dashboard
32
build_dir: html
0 commit comments