File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed
Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change 99jobs :
1010 docker :
1111 runs-on : ubuntu-latest
12+ strategy :
13+ matrix :
14+ include :
15+ - ubuntu_version : " 22.04"
16+ cuda_version : " 12.4.1"
17+ ros_distro : " humble"
18+ - ubuntu_version : " 24.04"
19+ cuda_version : " 13.1.0"
20+ ros_distro : " jazzy"
1221 steps :
1322 - name : Login to GitHub Container Registry
1423 uses : docker/login-action@v3
@@ -29,10 +38,10 @@ jobs:
2938 platforms : linux/amd64
3039 file : .docker/Dockerfile
3140 build-args : |
32- UBUNTU_VERSION=24.04
33- CUDA_VERSION=13.1.0
34- ROS_DISTRO=jazzy
41+ UBUNTU_VERSION=${{ matrix.ubuntu_version }}
42+ CUDA_VERSION=${{ matrix.cuda_version }}
43+ ROS_DISTRO=${{ matrix.ros_distro }}
3544 push : ${{ github.ref == 'refs/heads/main' }}
3645 tags : |
37- roboreg:latest
38- ghcr.io/lbr-stack/roboreg:latest
46+ roboreg:${{ matrix.ubuntu_version }}
47+ ghcr.io/lbr-stack/roboreg:${{ matrix.ubuntu_version }}
You can’t perform that action at this time.
0 commit comments