Skip to content

Commit

Permalink
stab at cuda build
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoskal committed Jan 11, 2024
1 parent 1de0452 commit dc6a974
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/rllm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: rLLM

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: Jimver/[email protected]
id: cuda-toolkit
with:
cuda: '12.3.2'

- run: echo "Installed cuda version is: ${{steps.cuda-toolkit.outputs.cuda}}"
- run: echo "Cuda install location: ${{steps.cuda-toolkit.outputs.CUDA_PATH}}"

- run: nvcc -V

- name: Build rLLM
run: cargo build --verbose --release
working-directory: rllm

0 comments on commit dc6a974

Please sign in to comment.