From e83f159172ed0821f6e590d000fe123ac80a7357 Mon Sep 17 00:00:00 2001 From: Stefan Krastanov Date: Sun, 21 Jan 2024 23:31:47 -0500 Subject: [PATCH] using internal conda environment for python-related CI --- .buildkite/pipeline.yml | 2 ++ .github/workflows/benchmark.yml | 3 +++ .github/workflows/ci-julia-nightly.yml | 2 ++ .github/workflows/ci.yml | 2 ++ 4 files changed, 9 insertions(+) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index a51e0c5fc..53e2e7e81 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -1,6 +1,8 @@ env: CODECOV_TOKEN: adb3f22a-231a-4f7b-8ed4-7c6c56453cbe JULIA_NUM_THREADS: auto + PYTHON: ~ + PYCALL_DEBUG_BUILD: yes steps: - label: "CI Buildkite" diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 5218fc733..34c65be0d 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -2,6 +2,9 @@ name: Performance tracking on: pull_request: +env: + PYTHON: ~ + jobs: performance-tracking: runs-on: ubuntu-latest diff --git a/.github/workflows/ci-julia-nightly.yml b/.github/workflows/ci-julia-nightly.yml index 0a982e6e1..6c7e5fc2d 100644 --- a/.github/workflows/ci-julia-nightly.yml +++ b/.github/workflows/ci-julia-nightly.yml @@ -4,6 +4,8 @@ on: branches: [master, main] tags: ["*"] pull_request: +env: + PYTHON: ~ jobs: test: name: Julia ${{ matrix.version }} - t=${{ matrix.threads }} - jet=${{ matrix.jet }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e16bb5bbe..ab8aa6cc3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,6 +4,8 @@ on: branches: [master, main] tags: ["*"] pull_request: +env: + PYTHON: ~ jobs: test: name: Julia ${{ matrix.version }} - t=${{ matrix.threads }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}