Skip to content

Commit

Permalink
Merge pull request #1171 from slaclab/pre-release
Browse files Browse the repository at this point in the history
Release Candidate v2.49.0
  • Loading branch information
ruck314 authored Jul 23, 2024
2 parents 96662e1 + 7bc993f commit 0a84a21
Show file tree
Hide file tree
Showing 47 changed files with 1,903 additions and 120,272 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/surf_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ jobs:
python -m compileall -f python/ scripts/ tests/
flake8 --count python/ scripts/ tests/
- name: C/C++ Linter
run: |
find . -name '*.h' -o -name '*.cpp' -o -name '*.c' | xargs cpplint
- name: VHDL Regression Testing
run: |
./ghdl-build.sh > /dev/null 2>&1
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

# Compiled source files
*.o
*.so
*.pyc
*.db
*.swp
Expand Down
22 changes: 22 additions & 0 deletions CPPLINT.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#######################################################
# CPPLINT.cfg
#######################################################

# Increase the max number of characters on a given line
linelength=250

# List of filters to apply
filter=-legal/copyright

# Disable the build/header_guard check
# Note changing header guard has wrong style
# E.g. from __SSI_PRINTF__ to INCLUDE_ROGUE_UTILITIES_MODULE_H_
filter=-build/header_guard

# Disable the readability/casting check
# Because we are using C code
filter=-readability/casting

# Disable the build/include_subdir check
# Because headers are organized in same directory and C code
filter=-build/include_subdir
Loading

0 comments on commit 0a84a21

Please sign in to comment.