diff --git a/.drone.yml b/.drone.yml index 9ba6355..dfd6838 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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: diff --git a/README.md b/README.md index 713ec44..015049a 100644 --- a/README.md +++ b/README.md @@ -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`