Skip to content

Commit 192c33f

Browse files
committed
rename some jobs
1 parent 5bd9047 commit 192c33f

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/programming_team_code_ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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
@@ -73,7 +73,7 @@ jobs:
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

tests/Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
help:
22
@echo "command | explanation"
33
@echo "------------------------------------ | -----------"
4-
@echo "make compile_gcc | compile all tests with -std=c++20 for warnings"
4+
@echo "make g++_gcc | compile all tests with -std=c++20 for warnings"
55
@echo " |"
6-
@echo "make compile_clang | compile all tests with clang, -std=c++20 for warnings"
6+
@echo "make g++_clang | compile all tests with clang, -std=c++20 for warnings"
77
@echo " |"
88
@echo "make compile_commented_snippets | compile code in @code...@endcode comments"
99
@echo " |"
@@ -25,11 +25,11 @@ help:
2525
@echo " |"
2626
@echo "make print_which_tests_havent_run | mainly to check if all tests have run"
2727

28-
compile_gcc:
29-
./scripts/compile_gcc.sh
28+
g++_gcc:
29+
./scripts/g++_gcc.sh
3030

31-
compile_clang:
32-
./scripts/compile_clang.sh
31+
g++_clang:
32+
./scripts/g++_clang.sh
3333

3434
grep_clangformat_cppcheck:
3535
./scripts/grep_clangformat_cppcheck.sh

0 commit comments

Comments
 (0)