Dtingdahl/ci script #1
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: nvblox premerge | |
| on: | |
| pull_request: | |
| jobs: | |
| gpu-job: | |
| name: Premerge | |
| runs-on: [self-hosted, gpu] # GPU jobs will run on AWS | |
| steps: | |
| - name: cpp-unit-tests x86_64-Cuda12-Ubuntu22 | |
| run: | | |
| ci/premerge.py --platform x86_64 --cuda-version 12 --ubuntu-version 22 --build-and-test cpp | |
| - name: python-unit-tests x86_64-Cuda12-Ubuntu22 | |
| run: | | |
| ci/premerge.py --platform x86_64 --cuda-version 12 --ubuntu-version 22 --build-and-test python |