Skip to content

Commit f417a76

Browse files
authored
Merge pull request #853 from caic99/develop
Test: rename CI step
2 parents e3f0dca + d001748 commit f417a76

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/dynamic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
test:
10-
name: Do the job on the runner
10+
name: Dynamic analysis
1111
runs-on: self-hosted
1212
if: github.repository_owner == 'deepmodeling'
1313
container: ghcr.io/deepmodeling/abacus-development-kit:gnu

.github/workflows/test.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
test:
8-
name: Do the job on the runner
8+
name: Test
99
runs-on: self-hosted
1010
if: github.repository_owner == 'deepmodeling'
1111
container: ghcr.io/deepmodeling/abacus-development-kit:gnu
@@ -14,11 +14,13 @@ jobs:
1414
uses: actions/checkout@v3
1515
with:
1616
ref: "refs/pull/${{ github.event.number }}/merge"
17-
- name: Build and Test
18-
env:
19-
GTEST_COLOR: 'yes'
17+
- name: Build
2018
run: |
2119
cmake -B build -DBUILD_TESTING=ON -DENABLE_DEEPKS=ON
2220
cmake --build build -j8
2321
cmake --install build
22+
- name: Test
23+
env:
24+
GTEST_COLOR: 'yes'
25+
run: |
2426
cmake --build build --target test ARGS="-V"

0 commit comments

Comments
 (0)