-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jonathan Stone <[email protected]>
- Loading branch information
1 parent
669d7d4
commit 3e71487
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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: | ||
|
@@ -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 | ||
|
@@ -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 | ||
|