From b94a3674e428d05b53f2d1054f8170d771d64e4c Mon Sep 17 00:00:00 2001 From: Roger Yang Date: Sat, 5 Oct 2024 20:11:45 -0700 Subject: [PATCH 1/2] remove symbolic links --- .github/workflows/python-CI.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-CI.yml b/.github/workflows/python-CI.yml index 4664e5fcc2..fedca6db94 100644 --- a/.github/workflows/python-CI.yml +++ b/.github/workflows/python-CI.yml @@ -146,14 +146,16 @@ jobs: src/phoenix/ tests/unit/ tests/conftest.py - - run: find . -type l -delete + - name: Remove symbolic links (Non-Windows) + run: find . -type l -delete if: runner.os != 'Windows' - - run: | + - name: Remove symbolic links (Windows) + run: | Remove-Item src/phoenix/evals Remove-Item src/phoenix/otel shell: powershell if: runner.os == 'Windows' - - name: Set up python ${{ matrix.py }} + - name: Set up Python ${{ matrix.py }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.py }} From 2e9a13d24313b4f676315ef5a8c129804ceb3890 Mon Sep 17 00:00:00 2001 From: Roger Yang Date: Sat, 5 Oct 2024 20:12:39 -0700 Subject: [PATCH 2/2] clean up --- .github/workflows/python-CI.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-CI.yml b/.github/workflows/python-CI.yml index 300d119785..155dccad77 100644 --- a/.github/workflows/python-CI.yml +++ b/.github/workflows/python-CI.yml @@ -195,16 +195,17 @@ jobs: requirements/ src/phoenix/ tests/integration/ - - name: Remove Symbolic Links (Non-Windows) + - name: Remove symbolic links (Non-Windows) run: find . -type l -delete if: runner.os != 'Windows' - - name: Remove Symbolic Links (Windows) + - name: Remove symbolic links (Windows) run: | Remove-Item src/phoenix/evals Remove-Item src/phoenix/otel shell: powershell if: runner.os == 'Windows' - - uses: actions/setup-python@v5 + - name: Set up Python ${{ matrix.py }} + uses: actions/setup-python@v5 with: python-version: ${{ matrix.py }} - uses: astral-sh/setup-uv@v3