Skip to content

Commit

Permalink
test102
Browse files Browse the repository at this point in the history
Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm committed Jan 24, 2024
1 parent b655089 commit 0ddce3a
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/python-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, windows-latest, macOS-latest]
### os: [ubuntu-22.04, windows-latest, macOS-latest]
os: [ubuntu-22.04]
env:
# On macOS we build both x86 and arm to support Intel and Apple Silicon.
CIBW_ARCHS_MACOS: x86_64 arm64
Expand All @@ -50,9 +51,9 @@ jobs:
# for arm64. It is not currently possible to test arm64 when cross
# compiling.
CIBW_TEST_SKIP: "*_arm64"
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: pytest {project}/src/wrappers/python/tests/
### CIBW_TEST_REQUIRES: pytest
### CIBW_TEST_COMMAND: pytest {project}/src/wrappers/python/tests/

steps:

- name: Checkout
Expand All @@ -62,7 +63,8 @@ jobs:
run: |
mkdir _build
mkdir _install

shell: bash

- name: Configure OpenEXR libraries
run: |
cmake .. \
Expand All @@ -74,12 +76,14 @@ jobs:
-DOPENEXR_INSTALL_DOCS='OFF' \
-DOPENEXR_INSTALL_EXAMPLES='OFF'
working-directory: _build
shell: bash

- name: Build & install OpenEXR libraries
run: |
cmake --build . \
--target install
working-directory: _build
shell: bash

- name: Set up python
uses: actions/setup-python@v4
Expand Down

0 comments on commit 0ddce3a

Please sign in to comment.