- In order to run different versions of maya, you need to check if that version is available in Marcus Ottosson's Maya docker image: https://hub.docker.com/r/mottosso/maya
- Copy/paste another Dockerfile-
<mayaversion>
, fix the FROM maya version to your desired image version. - Modify main.yml and add another job (change all instances of
<version>
):
maya_<version>_tests:
runs-on: ubuntu-latest
name: Runs Maya <version>
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build Container
run: /usr/bin/docker build -t maya -f "Dockerfile-<version>" .
- name: Run Container
run: /usr/bin/docker run -v "$(pwd):/root/workdir" maya
- Docker - Containerization
- Maya - 3D Runtime Environment
- GitHub Actions - CI
- marcusottosson as always for his fantastic resources