Skip to content

Commit

Permalink
Merge branch 'main' into feature-cmake_CI_with_submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
Davknapp committed Aug 26, 2024
2 parents 3d4a29f + 55e5a4e commit 4fbe162
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests_cmake_sc_p4est.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
&& echo P4EST_RELEASE="$P4EST_RELEASE" >> $GITHUB_ENV
## sc debug
- name: sc debug check
run: cd $SC_DEBUG && ctest $MAKEFLAGS
run: cd $SC_DEBUG && ninja test
- name: OnFailUploadLog
if: failure()
uses: actions/upload-artifact@v4
Expand All @@ -91,7 +91,7 @@ jobs:
path: $SC_DEBUG/Testing/Temporary/LastTest.log
## sc release
- name: sc release check
run: cd $SC_RELEASE && ctest $MAKEFLAGS
run: cd $SC_RELEASE && ninja test
- name: OnFailUploadLog
if: failure()
uses: actions/upload-artifact@v4
Expand All @@ -103,7 +103,7 @@ jobs:
#
## p4est debug
- name: p4est debug check
run: cd $P4EST_DEBUG && ctest $MAKEFLAGS
run: cd $P4EST_DEBUG && ninja test
- name: OnFailUploadLog
if: failure()
uses: actions/upload-artifact@v4
Expand All @@ -112,7 +112,7 @@ jobs:
path: $P4EST_DEBUG/Testing/Temporary/LastTest.log
## p4est release
- name: p4est release check
run: cd $P4EST_RELEASE && ctest $MAKEFLAGS
run: cd $P4EST_RELEASE && ninja test
- name: OnFailUploadLog
if: failure()
uses: actions/upload-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests_cmake_t8code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ jobs:
run: cd build && ninja $MAKEFLAGS
- name: ninja install
run: cd build && ninja install $MAKEFLAGS
- name: ctest
run: cd build && ctest $MAKEFLAGS
- name: ninja test
run: cd build && ninja test
- name: OnFailUploadLog
if: failure()
uses: actions/upload-artifact@v4
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests_cmake_t8code_linkage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ jobs:
run: cd build_netcdf && ninja $MAKEFLAGS
- name: ninja install
run: cd build_netcdf && ninja install $MAKEFLAGS
- name: ctest
run: cd build_netcdf && ctest $MAKEFLAGS
- name: ninja test
run: cd build_netcdf && ninja test
- name: OnFailUploadLog
if: failure()
uses: actions/upload-artifact@v4
Expand All @@ -126,8 +126,8 @@ jobs:
run: cd build_occ && ninja $MAKEFLAGS
- name: ninja install
run: cd build_occ && ninja install $MAKEFLAGS
- name: ctest
run: cd build_occ && ctest $MAKEFLAGS
- name: ninja test
run: cd build_occ && ninja test
- name: OnFailUploadLog
if: failure()
uses: actions/upload-artifact@v4
Expand All @@ -151,8 +151,8 @@ jobs:
run: cd build_vtk && ninja $MAKEFLAGS
- name: ninja install
run: cd build_vtk && ninja install $MAKEFLAGS
- name: ctest
run: cd build_vtk && ctest $MAKEFLAGS
- name: ninja test
run: cd build_vtk && ninja test
- name: OnFailUploadLog
if: failure()
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 4fbe162

Please sign in to comment.