@@ -57,14 +57,14 @@ jobs:
5757 - name : clang-tidy
5858 run : make --directory=tests/ clangtidy
5959
60- compile_gcc :
60+ g++_gcc :
6161 runs-on : ubuntu-latest
6262 steps :
6363 - uses : actions/checkout@v2
6464 - name : Compile all tests
65- run : make --directory=tests/ compile_gcc
65+ run : make --directory=tests/ g++_gcc
6666
67- compile_clang :
67+ g++_clang :
6868 runs-on : ubuntu-latest
6969 steps :
7070 - uses : actions/checkout@v2
7373 - name : Install dependencies
7474 run : sudo apt update && sudo apt install -y clang-19
7575 - name : Compile all tests
76- run : make --directory=tests/ compile_clang
76+ run : make --directory=tests/ g++_clang
7777
7878 files_without_tests :
7979 runs-on : ubuntu-latest
@@ -101,7 +101,7 @@ jobs:
101101
102102 publish_ptc :
103103 runs-on : ubuntu-latest
104- needs : [library_checker_aizu, grep_clangformat_cppcheck, clangtidy, compile_gcc, compile_clang , files_without_tests, build_ptc]
104+ needs : [library_checker_aizu, grep_clangformat_cppcheck, clangtidy, g++_gcc, g++_clang , files_without_tests, build_ptc]
105105 if : github.ref == 'refs/heads/dev' && github.event_name == 'push'
106106 steps :
107107 - uses : actions/checkout@v2
@@ -119,7 +119,7 @@ jobs:
119119
120120 update_main :
121121 runs-on : ubuntu-latest
122- needs : [library_checker_aizu, grep_clangformat_cppcheck, clangtidy, compile_gcc, compile_clang , files_without_tests]
122+ needs : [library_checker_aizu, grep_clangformat_cppcheck, clangtidy, g++_gcc, g++_clang , files_without_tests]
123123 if : github.ref == 'refs/heads/dev' && github.event_name == 'push'
124124 steps :
125125 - uses : actions/checkout@v2
0 commit comments