Skip to content

Commit 24a151b

Browse files
authored
Merge branch 'deepmodeling:develop' into develop
2 parents 31b7b27 + 0766b4f commit 24a151b

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/build_test.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: push
33

44
jobs:
55
test:
6-
runs-on: self-hosted
6+
runs-on: ubuntu-latest
77
strategy:
88
matrix:
99
include:
@@ -27,5 +27,4 @@ jobs:
2727
- name: Build
2828
run: |
2929
cmake -B build -DBUILD_TESTING=ON ${{ matrix.build_args }}
30-
cmake --build build -j4
31-
cmake --install build
30+
cmake --build build -j2

.github/workflows/container.yml

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

1010
jobs:
1111
build_container_and_push:
12-
runs-on: self-hosted
12+
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
1515
dockerfile: ["gnu","intel","cuda"]

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,6 @@ jobs:
2424
GTEST_COLOR: 'yes'
2525
run: |
2626
cmake -B build -DBUILD_TESTING=ON
27-
cmake --build build -j16
27+
cmake --build build -j8
28+
cmake --install build
29+
cmake --build build --target test ARGS="-V"

0 commit comments

Comments
 (0)