Skip to content

Commit 8cc8210

Browse files
committed
bump versions
1 parent edd6d39 commit 8cc8210

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/programming_team_code_ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
sudo apt install -y wget software-properties-common
4040
wget -O - https://apt.llvm.org/llvm.sh | sudo bash
4141
- name: Install dependencies
42-
run: sudo apt update && sudo apt install -y clang-format-18 cppcheck
42+
run: sudo apt update && sudo apt install -y clang-format-19 cppcheck
4343
- name: checks format then lints
4444
run: make --directory=tests/ check_format_lint
4545

@@ -53,7 +53,7 @@ jobs:
5353
sudo apt install -y wget software-properties-common
5454
wget -O - https://apt.llvm.org/llvm.sh | sudo bash
5555
- name: Install dependencies
56-
run: sudo apt update && sudo apt install -y clang-tidy-18
56+
run: sudo apt update && sudo apt install -y clang-tidy-19
5757
- name: clang-tidy
5858
run: make --directory=tests/ clangtidy
5959

@@ -91,7 +91,7 @@ jobs:
9191
wget -qO- https://apt.llvm.org/llvm.sh | sudo bash -s -- 18
9292
- name: build ptc
9393
run: make --directory=tests/ ptc
94-
- uses: actions/upload-artifact@v3
94+
- uses: actions/upload-artifact@v4
9595
with:
9696
name: ptc
9797
path: tests/ptc.pdf
@@ -102,7 +102,7 @@ jobs:
102102
if: github.ref == 'refs/heads/dev' && github.event_name == 'push'
103103
steps:
104104
- uses: actions/checkout@v2
105-
- uses: actions/download-artifact@v3
105+
- uses: actions/download-artifact@v4
106106
with:
107107
name: ptc
108108
path: tests/ptc.pdf
@@ -126,7 +126,7 @@ jobs:
126126
sudo apt install -y wget software-properties-common
127127
wget -O - https://apt.llvm.org/llvm.sh | sudo bash
128128
- name: Install dependencies
129-
run: sudo apt update && sudo apt install -y clang-format-18
129+
run: sudo apt update && sudo apt install -y clang-format-19
130130
- name: Combine includes and force push to main branch
131131
run: |
132132
git config --local user.name github-actions

tests/scripts/check_format_lint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ find ../library/ library_checker_aizu_tests/ -name "*[A-Z]*" -or -name "*-*" |
3636
grep --invert-match "README" &&
3737
exit 1
3838

39-
clang-format-18 --dry-run --Werror --style=file:.config/.clang-format library_checker_aizu_tests/**/*.hpp ../library/**/*.hpp ../library/**/*.cpp || exit 1
39+
clang-format-19 --dry-run --Werror --style=file:.config/.clang-format library_checker_aizu_tests/**/*.hpp ../library/**/*.hpp ../library/**/*.cpp || exit 1
4040

4141
git submodule init
4242
git submodule update

tests/scripts/clangtidy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ git submodule init
99
git submodule update
1010

1111
find library_checker_aizu_tests/ -type f -name "*.test.cpp" |
12-
parallel clang-tidy-18 --config-file=.config/.clang-tidy {} -- -std=c++20 ||
12+
parallel clang-tidy-19 --config-file=.config/.clang-tidy {} -- -std=c++20 ||
1313
exit 1

tests/scripts/compile_clang.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ git submodule init
99
git submodule update
1010

1111
find library_checker_aizu_tests/ -type f -name "*.test.cpp" |
12-
parallel clang++-18 {} "$(tr '\n' ' ' <.config/.clang_compile_flags)" -std=c++20
12+
parallel clang++-19 {} "$(tr '\n' ' ' <.config/.clang_compile_flags)" -std=c++20

tests/scripts/compile_commented_snippets.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ echo "compiling code in @code ... @endcode comments with g++"
3939
g++ -std=c++20 entire_library.cpp || exit 1
4040

4141
echo "compiling code in @code ... @endcode comments with clang++"
42-
clang++-18 -std=c++20 entire_library.cpp || exit 1
42+
clang++-19 -std=c++20 entire_library.cpp || exit 1

tests/scripts/do_format.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# ** glob now searches any number of levels
33
shopt -s globstar
44

5-
clang-format-18 -i --style=file:.config/.clang-format ../**/*.hpp ../**/*.cpp
5+
clang-format-19 -i --style=file:.config/.clang-format ../**/*.hpp ../**/*.cpp

0 commit comments

Comments
 (0)