Skip to content

Dtingdahl/ci script2 #24

Dtingdahl/ci script2

Dtingdahl/ci script2 #24

Workflow file for this run

name: nvblox premerge
on:
pull_request:
jobs:
premerge_x86_cu11_u22:
name: ${{ github.job }}
runs-on: [self-hosted, gpu] # GPU jobs will run on AWS
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
lfs: true
- name: ${{ github.job }} - Unit tests
shell: bash
run: |
cat ci/premerge.py
git log
- name: ${{ github.job }} - Unit tests
uses: ./.github/actions/build-and-test
with:
platform: x86_64
cuda-version: '11'
ubuntu-version: '22'
ngc-api-key: ${{ secrets.NGC_API_KEY }}
# premerge_x86_cu12_u22:
# name: ${{ github.job }}
# runs-on: [self-hosted, gpu] # GPU jobs will run on AWS
# steps:
# - name: Checkout Code
# uses: actions/checkout@v4
# with:
# ref: ${{ github.head_ref || github.ref }}
# fetch-depth: 0
# lfs: true
# clean: true
# - name: ${{ github.job }} - Unit tests
# uses: ./.github/actions/build-and-test
# with:
# platform: x86_64
# cuda-version: '12'
# ubuntu-version: '22'
# ngc-api-key: ${{ secrets.NGC_API_KEY }}
# premerge_x86_cu13_u24:
# name: ${{ github.job }}
# runs-on: [self-hosted, gpu] # GPU jobs will run on AWS
# steps:
# - name: Checkout Code
# uses: actions/checkout@v4
# with:
# ref: ${{ github.head_ref || github.ref }}
# fetch-depth: 0
# lfs: true
# clean: true
# - name: ${{ github.job }} - Unit tests
# uses: ./.github/actions/build-and-test
# with:
# platform: x86_64
# cuda-version: '13'
# ubuntu-version: '24'
# ngc-api-key: ${{ secrets.NGC_API_KEY }}