Skip to content

训练营大模型训练项目 #2

训练营大模型训练项目

训练营大模型训练项目 #2

Workflow file for this run

name: Build and test cpu
on:
push:
paths-ignore:
- '**.md'
- 'LICENSE'
pull_request:
paths:
- '**.md'
- 'LICENSE'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build
run: make USE_CUDA=OFF
- name: Download starter pack
run: ./download_starter_pack.sh
- name: Test cpu
run: make test-cpp