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

make sure we enable particles in cmake CI #966

Merged
merged 1 commit into from
Jun 2, 2020
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
9 changes: 7 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ jobs:
run: |
mkdir build
cd build
cmake .. -DENABLE_TUTORIALS=ON
cmake .. \
-DENABLE_TUTORIALS=ON \
-DENABLE_PARTICLES=ON
make -j 2 tutorials

# Build libamrex and all tutorials
Expand All @@ -50,6 +52,7 @@ jobs:
cd build
cmake .. \
-DENABLE_TUTORIALS=ON \
-DENABLE_PARTICLES=ON \
-DCMAKE_CXX_STANDARD=20 \
-DCMAKE_C_COMPILER=$(which gcc-10) \
-DCMAKE_CXX_COMPILER=$(which g++-10) \
Expand All @@ -68,7 +71,7 @@ jobs:
run: |
mkdir build
cd build
cmake .. -DENABLE_TUTORIALS=ON -DENABLE_MPI=OFF
cmake .. -DENABLE_TUTORIALS=ON -DENABLE_MPI=OFF -DENABLE_PARTICLES=ON
make -j 2 tutorials

# Build libamrex and all tutorials
Expand All @@ -85,6 +88,7 @@ jobs:
cd build
cmake .. \
-DENABLE_TUTORIALS=ON \
-DENABLE_PARTICLES=ON \
-DENABLE_FORTRAN=OFF \
-DCMAKE_CXX_STANDARD=11
make -j 2 tutorials
Expand All @@ -103,6 +107,7 @@ jobs:
cd build
cmake .. \
-DENABLE_TUTORIALS=ON \
-DENABLE_PARTICLES=ON \
-DENABLE_CUDA=ON \
-DCMAKE_C_COMPILER=$(which gcc-4.8) \
-DCMAKE_CXX_COMPILER=$(which g++-4.8) \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ jobs:
run: |
mkdir build
cd build
cmake .. -DENABLE_TUTORIALS=ON
cmake .. -DENABLE_TUTORIALS=ON -DENABLE_PARTICLES=ON
make -j 2 tutorials