28 lines
570 B
YAML
28 lines
570 B
YAML
stages:
|
|
- build
|
|
|
|
|
|
|
|
#job-html:
|
|
# stage: build
|
|
# script:
|
|
# - echo $pwd
|
|
# - make html
|
|
# artifacts:
|
|
# expire_in: 7 day
|
|
# paths:
|
|
# - ./build/html/
|
|
|
|
job-latex:
|
|
stage: build
|
|
script:
|
|
- LANG=zh_CN.utf-8 make latexpdf
|
|
- sshpass -p R0ck9 scp -o StrictHostKeyChecking=no ./build/latex/凝思安全操作系统V6.0技术说明书.pdf 20272@172.16.0.249:/home/20272/doc/等保四级申请测试提交的材料
|
|
|
|
artifacts:
|
|
expire_in: 7 day
|
|
paths:
|
|
- ./build/latex/*.pdf
|
|
|
|
|