From e9dbb73402ee12f9a9fe43632c41e5ae0e26a4ae Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Mon, 13 Nov 2023 20:02:14 +1100 Subject: [PATCH] echo --- .github/workflows/wheels-dependencies.sh | 4 ++++ .github/workflows/wheels.yml | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/wheels-dependencies.sh b/.github/workflows/wheels-dependencies.sh index ceb5bcfa969..a466cc32b5f 100755 --- a/.github/workflows/wheels-dependencies.sh +++ b/.github/workflows/wheels-dependencies.sh @@ -1,11 +1,15 @@ #!/bin/bash # Define custom utilities # Test for macOS with [ -n "$IS_MACOS" ] +echo "a" source wheels/multibuild/common_utils.sh +echo "b" source wheels/multibuild/library_builders.sh +echo "c" if [ -z "$IS_MACOS" ]; then source wheels/multibuild/manylinux_utils.sh fi +echo "d" ARCHIVE_SDIR=pillow-depends-main diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 4ef598675fb..d354dd9a4cc 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -13,7 +13,10 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest] + os: [ + #ubuntu-latest, + macos-latest + ] steps: - uses: actions/checkout@v4 with: