Skip to content

Commit 9a749c5

Browse files
committed
rename
1 parent 5bd9047 commit 9a749c5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/programming_team_code_ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- name: files without tests
8383
run: make --directory=tests/ files_without_tests
8484

85-
build_ptc:
85+
build_pdf:
8686
runs-on: ubuntu-latest
8787
steps:
8888
- uses: actions/checkout@v2
@@ -93,15 +93,15 @@ jobs:
9393
wget -qO- https://apt.llvm.org/llvm.sh | sudo bash -s -- 19
9494
sudo apt update && sudo apt install -y clang-19
9595
- name: build ptc
96-
run: make --directory=tests/ ptc
96+
run: make --directory=tests/ build_pdf
9797
- uses: actions/upload-artifact@v4
9898
with:
9999
name: ptc
100100
path: tests/ptc.pdf
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, compile_gcc, compile_clang, files_without_tests, build_pdf]
105105
if: github.ref == 'refs/heads/dev' && github.event_name == 'push'
106106
steps:
107107
- uses: actions/checkout@v2

tests/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ help:
1313
@echo " |"
1414
@echo "make clangtidy | runs clang-tidy (mainly to verify snake_case)"
1515
@echo " |"
16-
@echo "make ptc | build ptc.pdf from .tex file"
16+
@echo "make build_pdf | build build_pdf.pdf from .tex file"
1717
@echo " |"
1818
@echo "make shellcheck_shfmt | runs shellcheck and shfmt"
1919
@echo " |"
@@ -43,8 +43,8 @@ clangtidy:
4343
files_without_tests:
4444
./scripts/files_without_tests.sh
4545

46-
ptc:
47-
./scripts/ptc.sh
46+
build_pdf:
47+
./scripts/build_pdf.sh
4848

4949
shellcheck_shfmt:
5050
./scripts/shellcheck_shfmt.sh

0 commit comments

Comments
 (0)