Add NVML ECC counter RPCs #144
Workflow file for this run
This file contains hidden or 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: Codegen Test | |
| on: | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| codegen: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run codegen in CUDA builder | |
| run: | | |
| docker build \ | |
| -f Dockerfile \ | |
| --target builder \ | |
| --build-arg RUN_CODEGEN=1 \ | |
| --build-arg CUDA_VERSION=13.1.0 \ | |
| --build-arg UBUNTU_VERSION=24.04 \ | |
| -t lupine-codegen:test \ | |
| . |