From eb2b689b303ae88186a40f84b00ae5a611611938 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 16 Jan 2025 20:17:46 +0900 Subject: [PATCH 1/2] =?UTF-8?q?-Werror=E8=BF=BD=E5=8A=A0=E3=80=81=E3=83=86?= =?UTF-8?q?=E3=82=B9=E3=83=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/run_test_vs.yml | 4 ++-- external_libraries/base_utility_cpp | 2 +- external_libraries/python_math_to_cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run_test_vs.yml b/.github/workflows/run_test_vs.yml index 0c7568f..c0f31a9 100644 --- a/.github/workflows/run_test_vs.yml +++ b/.github/workflows/run_test_vs.yml @@ -2,7 +2,7 @@ name: Run test VS on: push: - branches: [ develop ] + branches: [ develop, add_option ] jobs: build: @@ -28,4 +28,4 @@ jobs: - name: Build and Run C++ application run: | - g++ -std=c++11 -Wall ${{ matrix.define }} -I ./python_numpy -I ./base_matrix -I ./external_libraries/python_math_to_cpp/base_math -I ./external_libraries/base_utility_cpp/base_utility -I ./test_vs/MCAP_tester/include -o ./test_vs/app ./test_vs/test_vs_main.cpp && ./test_vs/app + g++ -std=c++11 -Wall -Werror ${{ matrix.define }} -I ./python_numpy -I ./base_matrix -I ./external_libraries/python_math_to_cpp/base_math -I ./external_libraries/base_utility_cpp/base_utility -I ./test_vs/MCAP_tester/include -o ./test_vs/app ./test_vs/test_vs_main.cpp && ./test_vs/app diff --git a/external_libraries/base_utility_cpp b/external_libraries/base_utility_cpp index 05fdcd2..fd949fd 160000 --- a/external_libraries/base_utility_cpp +++ b/external_libraries/base_utility_cpp @@ -1 +1 @@ -Subproject commit 05fdcd2909e406b31938b109b9f23b895739e8df +Subproject commit fd949fde22ee7b66d7d37be336b77bd6a04ffb30 diff --git a/external_libraries/python_math_to_cpp b/external_libraries/python_math_to_cpp index bf48d9f..13d1217 160000 --- a/external_libraries/python_math_to_cpp +++ b/external_libraries/python_math_to_cpp @@ -1 +1 @@ -Subproject commit bf48d9fc79a0130f1e20ff146a6ab2666e816370 +Subproject commit 13d1217c1945a9971b26cb2366e55dcb72442e33 From be43bba8f13083dedfa9d05af2d38d5d03cbf6d7 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 16 Jan 2025 20:19:04 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=E3=83=86=E3=82=B9=E3=83=88=E5=AE=8C?= =?UTF-8?q?=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/run_test_vs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_test_vs.yml b/.github/workflows/run_test_vs.yml index c0f31a9..c5b94ae 100644 --- a/.github/workflows/run_test_vs.yml +++ b/.github/workflows/run_test_vs.yml @@ -2,7 +2,7 @@ name: Run test VS on: push: - branches: [ develop, add_option ] + branches: [ develop ] jobs: build: