Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into move_website_build
Browse files Browse the repository at this point in the history
  • Loading branch information
landinjm committed Nov 22, 2024
2 parents 8a2b222 + 4cbd6d9 commit c3379bf
Show file tree
Hide file tree
Showing 237 changed files with 27,053 additions and 6,872 deletions.
1 change: 1 addition & 0 deletions .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ jobs:
uses: jidicula/[email protected]
with:
clang-format-version: '16'
exclude-regex: 'contrib/catch/.*'
2 changes: 2 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ permissions:
jobs:
CI-Linux:
runs-on: [ubuntu-22.04]
timeout-minutes: 120

container:
image: dealii/dealii:v9.6.0-jammy
Expand All @@ -41,6 +42,7 @@ jobs:
make -j $(nproc)
- name: Run PRISMS-PF tests
timeout-minutes: 60
run: |
export OMPI_ALLOW_RUN_AS_ROOT=1
export OMPI_ALLOW_RUN_AS_ROOT_CONFIRM=1
Expand Down
95 changes: 47 additions & 48 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,30 @@
# Build folder
# Build files & folders
build/*
CMakeFiles/
CMakeCache.txt
*.cmake
Makefile
.ninja*
build.ninja

# VS Code
.vscode/*
# Config files
include/config.h
*.project
*.cproject
*.DS_Store

# IDE files
*.vscode/*
.clangd
compile_commands.json

# Python virtual environments
.venv/*
*.venv/

# clangd
.clangd

# misc
compile_commands.json
# Compressed Libraries
*.zip
*.tar.gz

# Compiled Object files
*.slo
Expand All @@ -35,30 +47,44 @@ compile_commands.json
*.exe
*.out
*.app
*.pbs
main-debug
main

#Output files
*vtk
*vtu
*vts
*frt
*.vtk
*.vtu
*.vts
*.frt
integratedFields.txt
output.txt
error.txt

# Checkpoint/restart files
restart.*
restart.mesh
restart.mesh.old
restart.mesh.info
restart.mesh.info.old
restart.time.info
restart.time.info.old

#Temporary files
*~
*#
*.#
*.btr
freeEnergy.txt
integratedFields.txt
.*vtu*

# Misc
visitlog.py

#CMAKE files
*.cmake
CMakeCache.txt
CMakeFiles/
Makefile
main
*#main*
# Doxygen
doc/doxygen/html/*
doc/doxygen/latex/*
doc/doxygen/Doxyfile.doc_doxygen
doc/doxygen/CMakeDoxyfile.in
doc/doxygen/DoxygenWarningLog.txt

#Tex files
*.aux
Expand Down Expand Up @@ -89,30 +115,3 @@ main
*.nav
*.snm
*.nlo

test
*.project
*.cproject
*.DS_Store
freeEnergy.txt
output.txt

# Output files
integratedFields.txt

# Checkpoint/restart files
restart*
restart.mesh
restart.mesh.info
restart.mesh.info.old
restart.mesh.old
restart.resume.z
restart.time.info
restart.time.info.old

# Doxygen
doc/doxygen/html/*
doc/doxygen/latex/*
doc/doxygen/Doxyfile.doc_doxygen
doc/doxygen/CMakeDoxyfile.in
doc/doxygen/DoxygenWarningLog.txt
Loading

0 comments on commit c3379bf

Please sign in to comment.