2023-03-19 23:50:31 +01:00
|
|
|
---
|
|
|
|
name: 'build container images'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
tags:
|
|
|
|
- '*'
|
|
|
|
|
2023-05-19 08:31:11 +02:00
|
|
|
concurrency:
|
|
|
|
group: ci-${{ github.head_ref || github.ref }}-${{ github.repository }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-03-19 23:50:31 +01:00
|
|
|
jobs:
|
2024-09-22 15:19:38 +02:00
|
|
|
hipblas-jobs:
|
|
|
|
uses: ./.github/workflows/image_build.yml
|
|
|
|
with:
|
|
|
|
tag-latest: ${{ matrix.tag-latest }}
|
|
|
|
tag-suffix: ${{ matrix.tag-suffix }}
|
|
|
|
ffmpeg: ${{ matrix.ffmpeg }}
|
|
|
|
image-type: ${{ matrix.image-type }}
|
|
|
|
build-type: ${{ matrix.build-type }}
|
|
|
|
cuda-major-version: ${{ matrix.cuda-major-version }}
|
|
|
|
cuda-minor-version: ${{ matrix.cuda-minor-version }}
|
|
|
|
platforms: ${{ matrix.platforms }}
|
|
|
|
runs-on: ${{ matrix.runs-on }}
|
|
|
|
base-image: ${{ matrix.base-image }}
|
|
|
|
grpc-base-image: ${{ matrix.grpc-base-image }}
|
|
|
|
aio: ${{ matrix.aio }}
|
|
|
|
makeflags: ${{ matrix.makeflags }}
|
|
|
|
latest-image: ${{ matrix.latest-image }}
|
|
|
|
latest-image-aio: ${{ matrix.latest-image-aio }}
|
|
|
|
secrets:
|
|
|
|
dockerUsername: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
dockerPassword: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
|
|
quayUsername: ${{ secrets.LOCALAI_REGISTRY_USERNAME }}
|
|
|
|
quayPassword: ${{ secrets.LOCALAI_REGISTRY_PASSWORD }}
|
|
|
|
strategy:
|
|
|
|
# Pushing with all jobs in parallel
|
|
|
|
# eats the bandwidth of all the nodes
|
2024-09-23 19:04:36 +02:00
|
|
|
max-parallel: 2
|
2024-09-22 15:19:38 +02:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- build-type: 'hipblas'
|
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'auto'
|
|
|
|
tag-suffix: '-hipblas-ffmpeg'
|
|
|
|
ffmpeg: 'true'
|
|
|
|
image-type: 'extras'
|
|
|
|
aio: "-aio-gpu-hipblas"
|
|
|
|
base-image: "rocm/dev-ubuntu-22.04:6.1"
|
|
|
|
grpc-base-image: "ubuntu:22.04"
|
|
|
|
latest-image: 'latest-gpu-hipblas'
|
|
|
|
latest-image-aio: 'latest-aio-gpu-hipblas'
|
|
|
|
runs-on: 'arc-runner-set'
|
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
|
|
|
- build-type: 'hipblas'
|
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'false'
|
|
|
|
tag-suffix: '-hipblas'
|
|
|
|
ffmpeg: 'false'
|
|
|
|
image-type: 'extras'
|
|
|
|
base-image: "rocm/dev-ubuntu-22.04:6.1"
|
|
|
|
grpc-base-image: "ubuntu:22.04"
|
|
|
|
runs-on: 'arc-runner-set'
|
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
|
|
|
- build-type: 'hipblas'
|
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'false'
|
|
|
|
tag-suffix: '-hipblas-ffmpeg-core'
|
|
|
|
ffmpeg: 'true'
|
|
|
|
image-type: 'core'
|
|
|
|
base-image: "rocm/dev-ubuntu-22.04:6.1"
|
|
|
|
grpc-base-image: "ubuntu:22.04"
|
|
|
|
runs-on: 'arc-runner-set'
|
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
|
|
|
- build-type: 'hipblas'
|
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'false'
|
|
|
|
tag-suffix: '-hipblas-core'
|
|
|
|
ffmpeg: 'false'
|
|
|
|
image-type: 'core'
|
|
|
|
base-image: "rocm/dev-ubuntu-22.04:6.1"
|
|
|
|
grpc-base-image: "ubuntu:22.04"
|
|
|
|
runs-on: 'arc-runner-set'
|
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
2024-02-29 11:40:08 +01:00
|
|
|
self-hosted-jobs:
|
2023-11-30 19:24:37 +01:00
|
|
|
uses: ./.github/workflows/image_build.yml
|
|
|
|
with:
|
|
|
|
tag-latest: ${{ matrix.tag-latest }}
|
|
|
|
tag-suffix: ${{ matrix.tag-suffix }}
|
|
|
|
ffmpeg: ${{ matrix.ffmpeg }}
|
|
|
|
image-type: ${{ matrix.image-type }}
|
|
|
|
build-type: ${{ matrix.build-type }}
|
|
|
|
cuda-major-version: ${{ matrix.cuda-major-version }}
|
|
|
|
cuda-minor-version: ${{ matrix.cuda-minor-version }}
|
|
|
|
platforms: ${{ matrix.platforms }}
|
|
|
|
runs-on: ${{ matrix.runs-on }}
|
2024-02-08 20:12:51 +01:00
|
|
|
base-image: ${{ matrix.base-image }}
|
2024-04-18 15:19:36 -05:00
|
|
|
grpc-base-image: ${{ matrix.grpc-base-image }}
|
2024-03-21 22:09:04 +01:00
|
|
|
aio: ${{ matrix.aio }}
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: ${{ matrix.makeflags }}
|
2024-04-02 19:25:46 +02:00
|
|
|
latest-image: ${{ matrix.latest-image }}
|
2024-04-03 11:30:12 +02:00
|
|
|
latest-image-aio: ${{ matrix.latest-image-aio }}
|
2023-11-30 19:24:37 +01:00
|
|
|
secrets:
|
2024-01-04 02:32:29 -05:00
|
|
|
dockerUsername: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
dockerPassword: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
|
|
quayUsername: ${{ secrets.LOCALAI_REGISTRY_USERNAME }}
|
|
|
|
quayPassword: ${{ secrets.LOCALAI_REGISTRY_PASSWORD }}
|
2023-05-31 19:51:02 +02:00
|
|
|
strategy:
|
2023-11-30 17:45:20 +01:00
|
|
|
# Pushing with all jobs in parallel
|
|
|
|
# eats the bandwidth of all the nodes
|
2024-09-22 15:21:16 +02:00
|
|
|
max-parallel: ${{ github.event_name != 'pull_request' && 5 || 8 }}
|
2023-05-31 19:51:02 +02:00
|
|
|
matrix:
|
|
|
|
include:
|
2024-02-29 11:40:08 +01:00
|
|
|
# Extra images
|
2023-05-31 19:51:02 +02:00
|
|
|
- build-type: ''
|
2023-10-16 21:46:29 +02:00
|
|
|
#platforms: 'linux/amd64,linux/arm64'
|
|
|
|
platforms: 'linux/amd64'
|
2023-05-31 19:51:02 +02:00
|
|
|
tag-latest: 'auto'
|
|
|
|
tag-suffix: ''
|
2023-06-04 14:00:21 +02:00
|
|
|
ffmpeg: ''
|
2023-11-20 23:01:31 +01:00
|
|
|
image-type: 'extras'
|
|
|
|
runs-on: 'arc-runner-set'
|
2024-02-08 20:12:51 +01:00
|
|
|
base-image: "ubuntu:22.04"
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
2023-10-29 22:04:43 +01:00
|
|
|
- build-type: ''
|
|
|
|
platforms: 'linux/amd64'
|
2024-03-23 16:08:32 +01:00
|
|
|
tag-latest: 'auto'
|
2023-10-29 22:04:43 +01:00
|
|
|
tag-suffix: '-ffmpeg'
|
|
|
|
ffmpeg: 'true'
|
2023-11-20 23:01:31 +01:00
|
|
|
image-type: 'extras'
|
|
|
|
runs-on: 'arc-runner-set'
|
2024-02-08 20:12:51 +01:00
|
|
|
base-image: "ubuntu:22.04"
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
2023-05-31 19:51:02 +02:00
|
|
|
- build-type: 'cublas'
|
2023-11-30 19:24:37 +01:00
|
|
|
cuda-major-version: "11"
|
2024-07-09 23:13:29 +02:00
|
|
|
cuda-minor-version: "7"
|
2023-05-31 19:51:02 +02:00
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'false'
|
|
|
|
tag-suffix: '-cublas-cuda11'
|
2023-06-04 14:00:21 +02:00
|
|
|
ffmpeg: ''
|
2023-11-20 23:01:31 +01:00
|
|
|
image-type: 'extras'
|
|
|
|
runs-on: 'arc-runner-set'
|
2024-02-08 20:12:51 +01:00
|
|
|
base-image: "ubuntu:22.04"
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
2023-05-31 19:51:02 +02:00
|
|
|
- build-type: 'cublas'
|
2023-11-30 19:24:37 +01:00
|
|
|
cuda-major-version: "12"
|
2024-07-23 23:35:31 +02:00
|
|
|
cuda-minor-version: "0"
|
2023-05-31 19:51:02 +02:00
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'false'
|
|
|
|
tag-suffix: '-cublas-cuda12'
|
2023-06-04 14:00:21 +02:00
|
|
|
ffmpeg: ''
|
2023-11-20 23:01:31 +01:00
|
|
|
image-type: 'extras'
|
|
|
|
runs-on: 'arc-runner-set'
|
2024-02-08 20:12:51 +01:00
|
|
|
base-image: "ubuntu:22.04"
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
2023-06-04 14:00:21 +02:00
|
|
|
- build-type: 'cublas'
|
2023-11-30 19:24:37 +01:00
|
|
|
cuda-major-version: "11"
|
2024-07-09 23:13:29 +02:00
|
|
|
cuda-minor-version: "7"
|
2023-06-04 14:00:21 +02:00
|
|
|
platforms: 'linux/amd64'
|
2024-03-23 16:08:32 +01:00
|
|
|
tag-latest: 'auto'
|
2023-06-04 14:00:21 +02:00
|
|
|
tag-suffix: '-cublas-cuda11-ffmpeg'
|
|
|
|
ffmpeg: 'true'
|
2023-11-20 23:01:31 +01:00
|
|
|
image-type: 'extras'
|
|
|
|
runs-on: 'arc-runner-set'
|
2024-02-08 20:12:51 +01:00
|
|
|
base-image: "ubuntu:22.04"
|
2024-03-21 22:09:04 +01:00
|
|
|
aio: "-aio-gpu-nvidia-cuda-11"
|
2024-04-03 11:30:12 +02:00
|
|
|
latest-image: 'latest-gpu-nvidia-cuda-11'
|
|
|
|
latest-image-aio: 'latest-aio-gpu-nvidia-cuda-11'
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
2023-06-04 14:00:21 +02:00
|
|
|
- build-type: 'cublas'
|
2023-11-30 19:24:37 +01:00
|
|
|
cuda-major-version: "12"
|
2024-07-23 23:35:31 +02:00
|
|
|
cuda-minor-version: "0"
|
2023-06-04 14:00:21 +02:00
|
|
|
platforms: 'linux/amd64'
|
2024-03-23 16:08:32 +01:00
|
|
|
tag-latest: 'auto'
|
2023-06-04 14:00:21 +02:00
|
|
|
tag-suffix: '-cublas-cuda12-ffmpeg'
|
|
|
|
ffmpeg: 'true'
|
2023-11-20 23:01:31 +01:00
|
|
|
image-type: 'extras'
|
|
|
|
runs-on: 'arc-runner-set'
|
2024-02-08 20:12:51 +01:00
|
|
|
base-image: "ubuntu:22.04"
|
2024-03-21 22:09:04 +01:00
|
|
|
aio: "-aio-gpu-nvidia-cuda-12"
|
2024-04-03 11:30:12 +02:00
|
|
|
latest-image: 'latest-gpu-nvidia-cuda-12'
|
|
|
|
latest-image-aio: 'latest-aio-gpu-nvidia-cuda-12'
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
2023-11-20 23:01:31 +01:00
|
|
|
- build-type: ''
|
|
|
|
#platforms: 'linux/amd64,linux/arm64'
|
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'auto'
|
|
|
|
tag-suffix: ''
|
|
|
|
ffmpeg: ''
|
|
|
|
image-type: 'extras'
|
2024-02-08 20:12:51 +01:00
|
|
|
base-image: "ubuntu:22.04"
|
2023-11-20 23:01:31 +01:00
|
|
|
runs-on: 'arc-runner-set'
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
2024-03-07 14:37:45 +01:00
|
|
|
- build-type: 'sycl_f16'
|
|
|
|
platforms: 'linux/amd64'
|
2024-03-23 16:08:32 +01:00
|
|
|
tag-latest: 'auto'
|
2024-05-22 23:35:39 +02:00
|
|
|
base-image: "quay.io/go-skynet/intel-oneapi-base:latest"
|
2024-04-18 15:19:36 -05:00
|
|
|
grpc-base-image: "ubuntu:22.04"
|
2024-03-07 14:37:45 +01:00
|
|
|
tag-suffix: '-sycl-f16-ffmpeg'
|
|
|
|
ffmpeg: 'true'
|
|
|
|
image-type: 'extras'
|
|
|
|
runs-on: 'arc-runner-set'
|
2024-03-23 15:54:14 +01:00
|
|
|
aio: "-aio-gpu-intel-f16"
|
2024-04-03 11:30:12 +02:00
|
|
|
latest-image: 'latest-gpu-intel-f16'
|
|
|
|
latest-image-aio: 'latest-aio-gpu-intel-f16'
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
2024-03-07 14:37:45 +01:00
|
|
|
- build-type: 'sycl_f32'
|
|
|
|
platforms: 'linux/amd64'
|
2024-03-23 16:08:32 +01:00
|
|
|
tag-latest: 'auto'
|
2024-05-22 23:35:39 +02:00
|
|
|
base-image: "quay.io/go-skynet/intel-oneapi-base:latest"
|
2024-04-18 15:19:36 -05:00
|
|
|
grpc-base-image: "ubuntu:22.04"
|
2024-03-07 14:37:45 +01:00
|
|
|
tag-suffix: '-sycl-f32-ffmpeg'
|
|
|
|
ffmpeg: 'true'
|
|
|
|
image-type: 'extras'
|
|
|
|
runs-on: 'arc-runner-set'
|
2024-03-23 15:54:14 +01:00
|
|
|
aio: "-aio-gpu-intel-f32"
|
2024-04-03 11:30:12 +02:00
|
|
|
latest-image: 'latest-gpu-intel-f32'
|
|
|
|
latest-image-aio: 'latest-aio-gpu-intel-f32'
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
2024-02-29 11:40:08 +01:00
|
|
|
# Core images
|
2024-02-01 19:21:52 +01:00
|
|
|
- build-type: 'sycl_f16'
|
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'false'
|
2024-05-22 23:35:39 +02:00
|
|
|
base-image: "quay.io/go-skynet/intel-oneapi-base:latest"
|
2024-04-18 15:19:36 -05:00
|
|
|
grpc-base-image: "ubuntu:22.04"
|
2024-02-06 15:52:21 +01:00
|
|
|
tag-suffix: '-sycl-f16-core'
|
2024-02-01 19:21:52 +01:00
|
|
|
ffmpeg: 'false'
|
|
|
|
image-type: 'core'
|
|
|
|
runs-on: 'arc-runner-set'
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
2024-02-01 19:21:52 +01:00
|
|
|
- build-type: 'sycl_f32'
|
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'false'
|
2024-05-22 23:35:39 +02:00
|
|
|
base-image: "quay.io/go-skynet/intel-oneapi-base:latest"
|
2024-04-18 15:19:36 -05:00
|
|
|
grpc-base-image: "ubuntu:22.04"
|
2024-02-06 15:52:21 +01:00
|
|
|
tag-suffix: '-sycl-f32-core'
|
2024-02-01 19:21:52 +01:00
|
|
|
ffmpeg: 'false'
|
|
|
|
image-type: 'core'
|
|
|
|
runs-on: 'arc-runner-set'
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
2024-02-01 19:21:52 +01:00
|
|
|
- build-type: 'sycl_f16'
|
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'false'
|
2024-05-22 23:35:39 +02:00
|
|
|
base-image: "quay.io/go-skynet/intel-oneapi-base:latest"
|
2024-04-18 15:19:36 -05:00
|
|
|
grpc-base-image: "ubuntu:22.04"
|
2024-02-06 15:52:21 +01:00
|
|
|
tag-suffix: '-sycl-f16-ffmpeg-core'
|
2024-02-01 19:21:52 +01:00
|
|
|
ffmpeg: 'true'
|
|
|
|
image-type: 'core'
|
|
|
|
runs-on: 'arc-runner-set'
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
2024-02-01 19:21:52 +01:00
|
|
|
- build-type: 'sycl_f32'
|
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'false'
|
2024-05-22 23:35:39 +02:00
|
|
|
base-image: "quay.io/go-skynet/intel-oneapi-base:latest"
|
2024-04-18 15:19:36 -05:00
|
|
|
grpc-base-image: "ubuntu:22.04"
|
2024-02-06 15:52:21 +01:00
|
|
|
tag-suffix: '-sycl-f32-ffmpeg-core'
|
2024-02-01 19:21:52 +01:00
|
|
|
ffmpeg: 'true'
|
|
|
|
image-type: 'core'
|
|
|
|
runs-on: 'arc-runner-set'
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: "--jobs=3 --output-sync=target"
|
2024-06-19 17:50:49 +02:00
|
|
|
|
2024-02-29 11:40:08 +01:00
|
|
|
core-image-build:
|
|
|
|
uses: ./.github/workflows/image_build.yml
|
|
|
|
with:
|
|
|
|
tag-latest: ${{ matrix.tag-latest }}
|
|
|
|
tag-suffix: ${{ matrix.tag-suffix }}
|
|
|
|
ffmpeg: ${{ matrix.ffmpeg }}
|
|
|
|
image-type: ${{ matrix.image-type }}
|
|
|
|
build-type: ${{ matrix.build-type }}
|
|
|
|
cuda-major-version: ${{ matrix.cuda-major-version }}
|
|
|
|
cuda-minor-version: ${{ matrix.cuda-minor-version }}
|
|
|
|
platforms: ${{ matrix.platforms }}
|
|
|
|
runs-on: ${{ matrix.runs-on }}
|
2024-03-21 22:09:04 +01:00
|
|
|
aio: ${{ matrix.aio }}
|
2024-02-29 11:40:08 +01:00
|
|
|
base-image: ${{ matrix.base-image }}
|
2024-04-18 15:19:36 -05:00
|
|
|
grpc-base-image: ${{ matrix.grpc-base-image }}
|
2024-03-29 16:32:40 -05:00
|
|
|
makeflags: ${{ matrix.makeflags }}
|
2024-04-02 19:25:46 +02:00
|
|
|
latest-image: ${{ matrix.latest-image }}
|
2024-04-03 11:30:12 +02:00
|
|
|
latest-image-aio: ${{ matrix.latest-image-aio }}
|
2024-12-22 21:29:33 +01:00
|
|
|
skip-drivers: ${{ matrix.skip-drivers }}
|
2024-02-29 11:40:08 +01:00
|
|
|
secrets:
|
|
|
|
dockerUsername: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
dockerPassword: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
|
|
quayUsername: ${{ secrets.LOCALAI_REGISTRY_USERNAME }}
|
|
|
|
quayPassword: ${{ secrets.LOCALAI_REGISTRY_PASSWORD }}
|
|
|
|
strategy:
|
2024-06-25 15:14:43 +02:00
|
|
|
max-parallel: ${{ github.event_name != 'pull_request' && 2 || 4 }}
|
2024-02-29 11:40:08 +01:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- build-type: ''
|
2024-05-28 10:34:59 +02:00
|
|
|
platforms: 'linux/amd64,linux/arm64'
|
2024-03-23 16:08:32 +01:00
|
|
|
tag-latest: 'auto'
|
2024-02-29 11:40:08 +01:00
|
|
|
tag-suffix: '-ffmpeg-core'
|
|
|
|
ffmpeg: 'true'
|
|
|
|
image-type: 'core'
|
|
|
|
base-image: "ubuntu:22.04"
|
2024-06-23 10:15:53 +02:00
|
|
|
runs-on: 'arc-runner-set'
|
2024-03-21 22:09:04 +01:00
|
|
|
aio: "-aio-cpu"
|
2024-04-03 11:30:12 +02:00
|
|
|
latest-image: 'latest-cpu'
|
|
|
|
latest-image-aio: 'latest-aio-cpu'
|
2024-04-18 15:19:36 -05:00
|
|
|
makeflags: "--jobs=4 --output-sync=target"
|
2024-12-22 21:29:33 +01:00
|
|
|
skip-drivers: 'false'
|
2023-11-20 23:01:31 +01:00
|
|
|
- build-type: 'cublas'
|
2023-11-30 19:24:37 +01:00
|
|
|
cuda-major-version: "11"
|
2024-07-09 23:13:29 +02:00
|
|
|
cuda-minor-version: "7"
|
2023-11-20 23:01:31 +01:00
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'false'
|
|
|
|
tag-suffix: '-cublas-cuda11-core'
|
|
|
|
ffmpeg: ''
|
|
|
|
image-type: 'core'
|
2024-02-08 20:12:51 +01:00
|
|
|
base-image: "ubuntu:22.04"
|
2024-06-23 10:15:53 +02:00
|
|
|
runs-on: 'arc-runner-set'
|
2024-04-18 15:19:36 -05:00
|
|
|
makeflags: "--jobs=4 --output-sync=target"
|
2024-12-22 21:29:33 +01:00
|
|
|
skip-drivers: 'false'
|
2023-11-20 23:01:31 +01:00
|
|
|
- build-type: 'cublas'
|
2023-11-30 19:24:37 +01:00
|
|
|
cuda-major-version: "12"
|
2024-07-23 23:35:31 +02:00
|
|
|
cuda-minor-version: "0"
|
2023-11-20 23:01:31 +01:00
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'false'
|
|
|
|
tag-suffix: '-cublas-cuda12-core'
|
|
|
|
ffmpeg: ''
|
|
|
|
image-type: 'core'
|
2024-02-08 20:12:51 +01:00
|
|
|
base-image: "ubuntu:22.04"
|
2024-06-23 10:15:53 +02:00
|
|
|
runs-on: 'arc-runner-set'
|
2024-04-18 15:19:36 -05:00
|
|
|
makeflags: "--jobs=4 --output-sync=target"
|
2024-12-22 21:29:33 +01:00
|
|
|
skip-drivers: 'false'
|
2023-11-20 23:01:31 +01:00
|
|
|
- build-type: 'cublas'
|
2023-11-30 19:24:37 +01:00
|
|
|
cuda-major-version: "11"
|
2024-07-09 23:13:29 +02:00
|
|
|
cuda-minor-version: "7"
|
2023-11-20 23:01:31 +01:00
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'false'
|
|
|
|
tag-suffix: '-cublas-cuda11-ffmpeg-core'
|
|
|
|
ffmpeg: 'true'
|
|
|
|
image-type: 'core'
|
2024-06-23 10:15:53 +02:00
|
|
|
runs-on: 'arc-runner-set'
|
2024-02-08 20:12:51 +01:00
|
|
|
base-image: "ubuntu:22.04"
|
2024-04-18 15:19:36 -05:00
|
|
|
makeflags: "--jobs=4 --output-sync=target"
|
2024-12-22 21:29:33 +01:00
|
|
|
skip-drivers: 'false'
|
2023-11-20 23:01:31 +01:00
|
|
|
- build-type: 'cublas'
|
2023-11-30 19:24:37 +01:00
|
|
|
cuda-major-version: "12"
|
2024-07-23 23:35:31 +02:00
|
|
|
cuda-minor-version: "0"
|
2023-11-20 23:01:31 +01:00
|
|
|
platforms: 'linux/amd64'
|
|
|
|
tag-latest: 'false'
|
|
|
|
tag-suffix: '-cublas-cuda12-ffmpeg-core'
|
|
|
|
ffmpeg: 'true'
|
|
|
|
image-type: 'core'
|
2024-06-23 10:15:53 +02:00
|
|
|
runs-on: 'arc-runner-set'
|
2024-02-08 20:12:51 +01:00
|
|
|
base-image: "ubuntu:22.04"
|
2024-12-22 21:29:33 +01:00
|
|
|
skip-drivers: 'false'
|
2024-04-18 15:19:36 -05:00
|
|
|
makeflags: "--jobs=4 --output-sync=target"
|
2024-06-24 20:04:58 +02:00
|
|
|
- build-type: 'vulkan'
|
2024-06-25 18:11:57 +02:00
|
|
|
platforms: 'linux/amd64'
|
2024-06-24 20:04:58 +02:00
|
|
|
tag-latest: 'false'
|
|
|
|
tag-suffix: '-vulkan-ffmpeg-core'
|
2024-06-28 09:04:33 +02:00
|
|
|
latest-image: 'latest-vulkan-ffmpeg-core'
|
2024-06-24 20:04:58 +02:00
|
|
|
ffmpeg: 'true'
|
|
|
|
image-type: 'core'
|
|
|
|
runs-on: 'arc-runner-set'
|
|
|
|
base-image: "ubuntu:22.04"
|
2024-12-22 21:29:33 +01:00
|
|
|
skip-drivers: 'false'
|
2024-06-25 15:14:43 +02:00
|
|
|
makeflags: "--jobs=4 --output-sync=target"
|
2024-12-23 12:34:39 +01:00
|
|
|
# - build-type: 'cublas'
|
|
|
|
# cuda-major-version: "12"
|
|
|
|
# cuda-minor-version: "0"
|
|
|
|
# platforms: 'linux/arm64'
|
|
|
|
# tag-latest: 'false'
|
|
|
|
# tag-suffix: '-nvidia-l4t-arm64-core'
|
|
|
|
# latest-image: 'latest-nvidia-l4t-arm64-core'
|
|
|
|
# ffmpeg: 'true'
|
|
|
|
# image-type: 'core'
|
|
|
|
# base-image: "nvcr.io/nvidia/l4t-jetpack:r36.4.0"
|
|
|
|
# runs-on: 'arc-runner-set'
|
|
|
|
# makeflags: "--jobs=4 --output-sync=target"
|
|
|
|
# skip-drivers: 'true'
|