Skip to content

Commit

Permalink
Merge pull request #315 from landinjm/unit_tests
Browse files Browse the repository at this point in the history
Updating `CMakeLists.txt`
  • Loading branch information
landinjm authored Nov 19, 2024
2 parents e92c007 + c5c382c commit 6bcfda8
Show file tree
Hide file tree
Showing 56 changed files with 23,268 additions and 2,259 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
pull_request:
branches:
- master
- development

concurrency:
group: ${{ github.event_name }}-${{ github.workflow }}-${{ github.ref }}
Expand All @@ -31,3 +30,4 @@ jobs:
uses: jidicula/[email protected]
with:
clang-format-version: '16'
exclude-regex: 'contrib/catch/.*'
1 change: 0 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
pull_request:
branches:
- master
- development
types:
- opened
- reopened
Expand Down
80 changes: 37 additions & 43 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,31 @@
# Build folder
# Build files & folders
build/*
CMakeFiles/
CMakeCache.txt
*.cmake
Makefile
.ninja*
build.ninja

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

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

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

# clangd
.clangd

# Compressed Libraries
*.zip
*.tar.gz

# misc
compile_commands.json

# Compiled Object files
*.slo
*.lo
Expand All @@ -40,30 +48,37 @@ compile_commands.json
*.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*
visitlog.py

#CMAKE files
*.cmake
CMakeCache.txt
CMakeFiles/
Makefile
main
*#main*
# Misc
visitlog.py
DoxygenWarningLog.txt

#Tex files
*.aux
Expand Down Expand Up @@ -94,24 +109,3 @@ main
*.nav
*.snm
*.nlo

test
DoxygenWarningLog.txt
*.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
Loading

0 comments on commit 6bcfda8

Please sign in to comment.