Skip to content

Commit

Permalink
added CUDA workflow for JP6
Browse files Browse the repository at this point in the history
  • Loading branch information
dusty-nv committed Dec 5, 2023
1 parent 5d02d24 commit 7422865
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/cuda-122_jp60.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: "cuda-122_jp60"
run-name: "Build cuda:12.2 (JetPack 6.0)"
on:
workflow_dispatch: {}
push:
branches:
- 'dev'
paths:
- '.github/workflows/cuda-122_jp60.yml'
- 'packages/cuda/cuda/*'
- '!packages/cuda/cuda/README.md'
- '!packages/cuda/cuda/docs.md'
- 'packages/build-essential/*'
- '!packages/build-essential/README.md'
- '!packages/build-essential/docs.md'
jobs:
cuda-122_jp60:
runs-on: [self-hosted, jetson, jp60]
steps:
- run: |
cat /etc/nv_tegra_release
- name: "Checkout ${{ github.repository }} SHA=${{ github.sha }}"
run: |
echo "$RUNNER_WORKSPACE"
cd $RUNNER_WORKSPACE
git config --global user.email "[email protected]"
git config --global user.name "Dustin Franklin"
git clone $GITHUB_SERVER_URL/$GITHUB_REPOSITORY || echo 'repo already cloned or another error encountered'
cd jetson-containers
git fetch origin
git checkout $GITHUB_SHA
git status
ls -a
- run: ./build.sh --name=runner/ --push=dustynv cuda:12.2

0 comments on commit 7422865

Please sign in to comment.