Skip to content

Commit

Permalink
Minor naming updates
Browse files Browse the repository at this point in the history
Signed-off-by: Jonathan Stone <[email protected]>
  • Loading branch information
jstone-lucasfilm authored and JeanChristopheMorinPerso committed Jun 3, 2023
1 parent 669d7d4 commit 3e71487
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ jobs:
with:
python-version: 3.11

- name: Install build command
- name: Install Build Command
run: python -m pip install build

- name: Generate sdist
- name: Generate Sdist
id: generate
run: |
python -m build -s . --outdir dist
echo "filename=$(ls dist)" >> "$GITHUB_OUTPUT"
- name: Store sdist
- name: Upload Sdist
uses: actions/upload-artifact@v3
with:
name: sdist
Expand All @@ -57,13 +57,13 @@ jobs:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']

steps:
- name: Download sdist
- name: Download Sdist
uses: actions/download-artifact@v3
with:
name: sdist
path: sdist

- name: Build wheels
- name: Build Wheel
# https://cibuildwheel.readthedocs.io/en/stable/
uses: pypa/[email protected]
with:
Expand All @@ -84,7 +84,7 @@ jobs:
# CIBW_BUILD_FRONTEND: build # https://github.com/pypa/build
MACOSX_DEPLOYMENT_TARGET: '10.15'

- name: Store wheels
- name: Upload Wheel
uses: actions/upload-artifact@v3
with:
name: wheels
Expand All @@ -107,16 +107,16 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Download wheels
- name: Download Wheels
uses: actions/download-artifact@v3
with:
name: wheels
path: wheels

- name: Install wheel
- name: Install Wheel
run: python -m pip install MaterialX --find-links wheels --no-index

- name: Python tests
- name: Python Tests
run: |
python python/MaterialXTest/main.py
python python/MaterialXTest/genshader.py
Expand Down

0 comments on commit 3e71487

Please sign in to comment.