Skip to content

Add files via upload (#407) #1268

Add files via upload (#407)

Add files via upload (#407) #1268

Workflow file for this run

name: Auto test
on:
push:
pull_request:
branches:
- master
jobs:
work:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# github action 默认签出只包含最后一次提交
# 解决方案参考:https://stackoverflow.com/questions/62334460/git-history-in-a-github-action
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Set up Python
# 这是设置Python action的版本,不是Python的版本
uses: actions/setup-python@v5
with:
python-version: '3.9' # 指定python版本
# 可选 - x64 or x86 架构,默认为 x64
architecture: 'x64'
- name: Install Python dependencies
run: python -m pip install --upgrade pip requests gitpython
- name: Launch Simulation
run: python launch.py -t ${{ secrets.GITHUB_TOKEN }} # 执行
# 触发行人论文的 action
- name: Compile Pedestrian LaTeX document
uses: xu-cheng/latex-action@v3
with:
working_directory: pedestrian/undergraduate
root_file: hutbthesis_main.tex
texlive_version: 2023
latexmk_use_xelatex: true
# 下载安装Times New Roman字体
pre_compile: |
apk add msttcorefonts-installer fontconfig
update-ms-fonts
fc-cache -f
# 触发强化学习论文的 action
- name: Compile Reinforment Learning LaTeX document
uses: xu-cheng/latex-action@v3
with:
working_directory: rl/undergraduate
root_file: hutbthesis_main.tex
texlive_version: 2023
latexmk_use_xelatex: true
# 下载安装Times New Roman字体
pre_compile: |
apk add msttcorefonts-installer fontconfig
update-ms-fonts
fc-cache -f
# 触发面向智慧交通场景的多目标跟踪算法和评测论文的 action
- name: Compile MOT LaTeX document
uses: xu-cheng/latex-action@v3
with:
working_directory: mot/undergraduate
root_file: hutbthesis_main.tex
texlive_version: 2023
latexmk_use_xelatex: true
# 下载安装Times New Roman字体
pre_compile: |
apk add msttcorefonts-installer fontconfig
update-ms-fonts
fc-cache -f
# 触发Cornet类脑论文的 action
- name: Compile Pedestrian LaTeX document
uses: xu-cheng/latex-action@v3
with:
working_directory: recognition/undergraduate
root_file: main.tex
texlive_version: 2023
latexmk_use_xelatex: true
# 下载安装Times New Roman字体
pre_compile: |
apk add msttcorefonts-installer fontconfig
update-ms-fonts
fc-cache -f
# 触发面向自动驾驶的视觉目标跟踪和意图分析算法论文的 action
- name: Compile SOT LaTeX document
uses: xu-cheng/latex-action@v3
with:
working_directory: sot/undergraduate
root_file: hutbthesis_main.tex
texlive_version: 2024
latexmk_use_xelatex: true
# 下载安装Times New Roman字体
pre_compile: |
apk add msttcorefonts-installer fontconfig
update-ms-fonts
fc-cache -f
# 基于虚拟仿真引擎的深度学习训练和评测系统论文的 action
- name: Compile data LaTeX document
uses: xu-cheng/latex-action@v3
with:
working_directory: sim/undergraduate
root_file: hutbthesis_main.tex
texlive_version: 2024
latexmk_use_xelatex: true
# 下载安装Times New Roman字体
pre_compile: |
apk add msttcorefonts-installer fontconfig
update-ms-fonts
fc-cache -f
# 智能驾驶危险仿真场景的生成和优化算法论文的 action
- name: Compile critical LaTeX document
uses: xu-cheng/latex-action@v3
with:
working_directory: critical/undergraduate
root_file: hutbthesis_main.tex
texlive_version: 2023
latexmk_use_xelatex: true
# 下载安装Times New Roman字体
pre_compile: |
apk add msttcorefonts-installer fontconfig
update-ms-fonts
fc-cache -f
# 基于预训练大模型的高保真三维智能驾驶场景生成系统论文的 action
- name: Compile Scene LaTeX document
uses: xu-cheng/latex-action@v3
with:
working_directory: scene/undergraduate
root_file: hutbthesis_main.tex
texlive_version: 2024
latexmk_use_xelatex: true
pre_compile: |
apk add msttcorefonts-installer fontconfig
update-ms-fonts
fc-cache -f