From 687a6b5087882e0ee949ea207bedfa2b0515714a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Melissa=20Weber=20Mendon=C3=A7a?= Date: Sat, 20 Apr 2024 09:30:06 -0300 Subject: [PATCH] First test in my fork --- .github/workflows/circleci.yml | 3 ++- .github/workflows/cygwin.yml | 2 +- .github/workflows/linux.yml | 5 +++-- .github/workflows/linux_blas.yml | 18 +++++++++--------- .../workflows/linux_compiler_sanitizers.yml | 2 +- .github/workflows/linux_musl.yml | 2 +- .github/workflows/linux_qemu.yml | 2 +- .github/workflows/linux_simd.yml | 2 +- .github/workflows/macos.yml | 4 ++-- .github/workflows/mypy.yml | 2 +- .github/workflows/windows.yml | 4 ++-- 11 files changed, 24 insertions(+), 22 deletions(-) diff --git a/.github/workflows/circleci.yml b/.github/workflows/circleci.yml index c0c8876b6bbe..5ab599dba0a0 100644 --- a/.github/workflows/circleci.yml +++ b/.github/workflows/circleci.yml @@ -11,7 +11,8 @@ permissions: read-all jobs: circleci_artifacts_redirector_job: runs-on: ubuntu-latest - if: "github.repository == 'numpy/numpy' && !contains(github.event.head_commit.message, '[circle skip]') && !contains(github.event.head_commit.message, '[skip circle]') && github.event.context == 'ci/circleci: build'" + #if: "github.repository == 'numpy/numpy' && !contains(github.event.head_commit.message, '[circle skip]') && !contains(github.event.head_commit.message, '[skip circle]') && github.event.context == 'ci/circleci: build'" + if: "!contains(github.event.head_commit.message, '[circle skip]') && !contains(github.event.head_commit.message, '[skip circle]') && github.event.context == 'ci/circleci: build'" name: Run CircleCI artifacts redirector permissions: statuses: write diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml index 8cbb9c45fa51..9d2a06d07bd5 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -21,7 +21,7 @@ jobs: needs: get_commit_message runs-on: windows-latest # To enable this workflow on a fork, comment out: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f68ac2eb4b10..20ca475d7f45 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -34,7 +34,8 @@ jobs: lint: # To enable this job and subsequent jobs on a fork, comment out: - if: github.repository == 'numpy/numpy' && github.event_name != 'push' + #if: github.repository == 'numpy/numpy' && + if: github.event_name != 'push' runs-on: ubuntu-latest continue-on-error: true steps: @@ -54,7 +55,7 @@ jobs: smoke_test: # To enable this job on a fork, comment out: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: ubuntu-latest env: diff --git a/.github/workflows/linux_blas.yml b/.github/workflows/linux_blas.yml index c40a516a65ee..00a4f8736e10 100644 --- a/.github/workflows/linux_blas.yml +++ b/.github/workflows/linux_blas.yml @@ -59,7 +59,7 @@ jobs: openblas32_stable_nightly: # To enable this workflow on a fork, comment out: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: ubuntu-latest strategy: @@ -123,7 +123,7 @@ jobs: openblas_no_pkgconfig_fedora: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: ubuntu-latest container: fedora:39 @@ -159,7 +159,7 @@ jobs: flexiblas_fedora: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: ubuntu-latest container: fedora:39 @@ -195,7 +195,7 @@ jobs: openblas_cmake: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: ubuntu-latest name: "OpenBLAS with CMake" @@ -224,7 +224,7 @@ jobs: netlib-debian: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: ubuntu-latest name: "Debian libblas/liblapack" @@ -254,7 +254,7 @@ jobs: netlib-split: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: ubuntu-latest container: opensuse/tumbleweed @@ -286,7 +286,7 @@ jobs: mkl: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: ubuntu-latest name: "MKL (LP64, ILP64, SDL)" @@ -350,7 +350,7 @@ jobs: run: spin test -- numpy/linalg blis: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: ubuntu-latest name: "BLIS" @@ -387,7 +387,7 @@ jobs: run: spin test -- numpy/linalg atlas: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: ubuntu-latest name: "ATLAS" diff --git a/.github/workflows/linux_compiler_sanitizers.yml b/.github/workflows/linux_compiler_sanitizers.yml index b083132e283d..63c0992d2f71 100644 --- a/.github/workflows/linux_compiler_sanitizers.yml +++ b/.github/workflows/linux_compiler_sanitizers.yml @@ -28,7 +28,7 @@ jobs: clang_sanitizers: # To enable this workflow on a fork, comment out: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: ubuntu-latest steps: diff --git a/.github/workflows/linux_musl.yml b/.github/workflows/linux_musl.yml index 19d2ae49463e..809408e2ea6c 100644 --- a/.github/workflows/linux_musl.yml +++ b/.github/workflows/linux_musl.yml @@ -24,7 +24,7 @@ jobs: musllinux_x86_64: runs-on: ubuntu-latest # To enable this workflow on a fork, comment out: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message container: # Use container used for building musllinux wheels diff --git a/.github/workflows/linux_qemu.yml b/.github/workflows/linux_qemu.yml index a68db72d5521..5a0f1a2fc8f2 100644 --- a/.github/workflows/linux_qemu.yml +++ b/.github/workflows/linux_qemu.yml @@ -33,7 +33,7 @@ jobs: linux_qemu: # To enable this workflow on a fork, comment out: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: ubuntu-22.04 continue-on-error: true diff --git a/.github/workflows/linux_simd.yml b/.github/workflows/linux_simd.yml index 8f4ac4817b18..7d256eb9af37 100644 --- a/.github/workflows/linux_simd.yml +++ b/.github/workflows/linux_simd.yml @@ -57,7 +57,7 @@ jobs: baseline_only: # To enable this workflow on a fork, comment out: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: ubuntu-latest env: diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index d62a13636c52..e10ea21e31aa 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -24,7 +24,7 @@ jobs: x86_conda: name: macOS x86-64 conda # To enable this workflow on a fork, comment out: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: macos-13 strategy: @@ -109,7 +109,7 @@ jobs: accelerate: name: Accelerate (LP64, ILP64) - ${{ matrix.build_runner[1] }} - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message runs-on: ${{ matrix.build_runner[0] }} strategy: diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index d1b2b17c5080..34fb92f45780 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -43,7 +43,7 @@ jobs: mypy: # To enable this workflow on a fork, comment out: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message name: "MyPy" runs-on: ${{ matrix.os_python[0] }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 1d61b33633ed..ee700853b21b 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -22,7 +22,7 @@ jobs: needs: get_commit_message runs-on: windows-2019 # To enable this job on a fork, comment out: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' strategy: fail-fast: false matrix: @@ -86,7 +86,7 @@ jobs: name: MSVC, 32-bit Python, no BLAS runs-on: windows-2019 # To enable this job on a fork, comment out: - if: github.repository == 'numpy/numpy' + #if: github.repository == 'numpy/numpy' needs: get_commit_message steps: - name: Checkout