ci: add a safe sleep period of 10s after booting #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: LLM Inference Test | |
on: [push] | |
jobs: | |
llm-riscv-llama-test: | |
timeout-minutes: 360 | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/joennlae/qemu-riscv-vec:latest | |
env: | |
CC: gcc-13 | |
CXX: g++-13 | |
defaults: | |
run: | |
shell: bash -el {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run Llama 2 7B Inference Test | |
run: | | |
bash /root/ubuntu-riscv-vector/startup.sh | |
cd test | |
make test-llama |