Skip to content

Commit 832e783

Browse files
authored
Merge pull request #838 from caic99/develop
Test: change testing target to merged reference
2 parents 81cd871 + 5130639 commit 832e783

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/build_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
container: ghcr.io/${{ github.repository_owner }}/abacus-development-kit:${{ matrix.tag }}
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
2727
- name: Build
2828
run: |
2929
cmake -B build -DBUILD_TESTING=ON ${{ matrix.build_args }}

.github/workflows/container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
dockerfile: ["gnu","intel","cuda"]
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717

1818
- name: Setup Docker Buildx
1919
uses: docker/setup-buildx-action@v1

.github/workflows/dynamic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
container: ghcr.io/deepmodeling/abacus-development-kit:gnu
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717
- name: Building
1818
run: |
1919
cmake -B build -DENABLE_ASAN=1 -DBUILD_TESTING=ON -DENABLE_DEEPKS=1
@@ -27,6 +27,6 @@ jobs:
2727
if: ${{ ! cancelled() }}
2828
with:
2929
target_branch: dashboard
30-
build_dir: html
30+
build_dir: tests/html
3131
env:
3232
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/static.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
container: ghcr.io/deepmodeling/abacus-development-kit:gnu
1111
steps:
1212
- name: Checkout Pull Request
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
with:
1515
ref: ${{ github.event.pull_request.head.sha }}
1616
- name: Setup clang-tidy

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
container: ghcr.io/deepmodeling/abacus-development-kit:gnu
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515
with:
16-
ref: ${{ github.event.pull_request.head.sha }}
16+
ref: "refs/pull/${{ github.event.number }}/merge"
1717
- name: Build and Test
1818
env:
1919
GTEST_COLOR: 'yes'

0 commit comments

Comments
 (0)