Skip to content

Commit

Permalink
Add support for Maya 2022
Browse files Browse the repository at this point in the history
  • Loading branch information
mottosso committed Mar 24, 2021
1 parent 3250538 commit cadd880
Show file tree
Hide file tree
Showing 3 changed files with 298 additions and 106 deletions.
27 changes: 17 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,23 @@ jobs:
fail-fast: false

matrix:
containerImage: [
"mottosso/maya:2015sp6",
"mottosso/maya:2016sp1",
"mottosso/maya:2017",
"mottosso/maya:2018",
"mottosso/maya:2019",
"mottosso/maya:2020"
]
include:
- maya: "2015sp6"
pip: "2.7/get-pip.py"
- maya: "2016sp1"
pip: "2.7/get-pip.py"
- maya: "2017"
pip: "2.7/get-pip.py"
- maya: "2018"
pip: "2.7/get-pip.py"
- maya: "2019"
pip: "2.7/get-pip.py"
- maya: "2020"
pip: "2.7/get-pip.py"
- maya: "2022"
pip: "get-pip.py"

container: ${{ matrix.containerImage }}
container: mottosso/maya:${{ matrix.maya }}

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -41,7 +48,7 @@ jobs:

- name: pip install
run: |
wget https://bootstrap.pypa.io/pip/2.7/get-pip.py
wget https://bootstrap.pypa.io/pip/${{ matrix.pip }}
mayapy get-pip.py --user
mayapy -m pip install --user \
nose \
Expand Down
Loading

0 comments on commit cadd880

Please sign in to comment.