Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Github-hosted runner instead of self-hosted. #719

Merged
merged 8 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ on:

jobs:
build:
runs-on: self-hosted
timeout-minutes: 10
runs-on: ubuntu-latest
container:
image: "ghcr.io/kamping-site/kamping-ci:2024.2"
continue-on-error: true
Expand Down Expand Up @@ -73,7 +72,7 @@ jobs:
- name: cmake
run: cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.build-mode }} -DCMAKE_CXX_COMPILER=${{ matrix.compiler.cxx }} -DCMAKE_C_COMPILER=${{ matrix.compiler.cc }} -DKAMPING_WARNINGS_ARE_ERRORS=ON -DKAMPING_EXCEPTION_MODE=${{ matrix.exception-mode }} -DKAMPING_ASSERTION_LEVEL=${{ matrix.assertion-level }} -DKAMPING_TESTS_DISCOVER=OFF -DKAMPING_TEST_ENABLE_SANITIZERS=ON -DKAMPING_TEST_TIMEOUT=40
- name: build
run: cmake --build build/ --parallel
run: cmake --build build/ --parallel 16
- name: Allow-running-mpi
run: |
echo OMPI_ALLOW_RUN_AS_ROOT=1 >> $GITHUB_ENV
Expand Down
21 changes: 0 additions & 21 deletions .github/workflows/clang-format-check.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/cmake-format-check.yml

This file was deleted.

3 changes: 1 addition & 2 deletions .github/workflows/doxygen-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ on:
jobs:
doxygen-check:
name: Doxygen Check
runs-on: self-hosted
timeout-minutes: 10
runs-on: ubuntu-latest
container:
image: "ghcr.io/kamping-site/kamping-ci:2024.2"
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/formatting-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
cmake-formatting-check:
name: Formatting Check
runs-on: self-hosted
runs-on: ubuntu-latest
container:
image: "ghcr.io/kamping-site/kamping-ci:2024.2"
steps:
Expand Down
6 changes: 1 addition & 5 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -231,11 +231,7 @@ kamping_register_mpi_test(
FILES plugins/alltoall_dispatch_test.cpp
CORES 1 4
)
kamping_register_mpi_test(
test_reproducible_reduce
FILES plugins/reproducible_reduce.cpp
CORES 4
)
# kamping_register_mpi_test( test_reproducible_reduce FILES plugins/reproducible_reduce.cpp CORES 4 )
kamping_register_mpi_test(
test_hooks
FILES hooks_test.cpp
Expand Down
Loading