Add Blender 3.2 tags and generate new Dockerfiles

pull/48/head
Nagarjuna Bandamedi 2022-10-23 15:15:28 -05:00
rodzic 8e1d25a703
commit a437538c10
2 zmienionych plików z 66 dodań i 0 usunięć

Wyświetl plik

@ -721,6 +721,67 @@ steps:
username:
from_secret: docker_username
---
kind: pipeline
name: 3.3.1-cpu-ubuntu18.04
platform:
os: linux
arch: amd64
steps:
- name: generate
pull: if-not-exists
image: python:3.8-slim
commands:
- python3 generate.py
- name: 3.3.1-cpu-ubuntu18.04
pull: if-not-exists
image: plugins/docker
settings:
dockerfile: dist/3.3.1-cpu-ubuntu18.04/Dockerfile
password:
from_secret: docker_password
repo: nytimes/blender
tags: 3.3.1-cpu-ubuntu18.04
username:
from_secret: docker_username
trigger:
branch:
- master
event:
- push
---
kind: pipeline
name: 3.3.1-gpu-ubuntu18.04
platform:
os: linux
arch: amd64
steps:
- name: generate
pull: if-not-exists
image: python:3.8-slim
commands:
- python3 generate.py
- name: 3.3.1-gpu-ubuntu18.04
pull: if-not-exists
image: plugins/docker
settings:
dockerfile: dist/3.3.1-gpu-ubuntu18.04/Dockerfile
password:
from_secret: docker_password
repo: nytimes/blender
tags:
- 3.3.1-gpu-ubuntu18.04
- latest
username:
from_secret: docker_username
trigger:
branch:
- master
@ -770,6 +831,8 @@ depends_on:
- 3.1-cpu-ubuntu18.04
- 3.2-gpu-ubuntu18.04
- 3.2-cpu-ubuntu18.04
- 3.3.1-gpu-ubuntu18.04
- 3.3.1-cpu-ubuntu18.04
trigger:
branch:

Wyświetl plik

@ -20,6 +20,9 @@ The images in this repository are autogenerated by running the `generate.py` scr
## Docker tags
- `nytimes/blender:latest` - Latest GPU image with latest Blender version
### 3.3.1
- `nytimes/blender:3.3.1-cpu-ubuntu18.04`
- `nytimes/blender:3.3.1-gpu-ubuntu18.04`
### 3.2
- `nytimes/blender:3.2-cpu-ubuntu18.04`
- `nytimes/blender:3.2-gpu-ubuntu18.04`