perf/pipeline-improvements #3

Merged
jknapp merged 2 commits from perf/pipeline-improvements into main 2026-03-21 05:40:04 +00:00
Showing only changes of commit c8754076f4 - Show all commits

View File

@@ -32,9 +32,11 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Create Python toolcache directory (macOS) - name: Set up Python toolcache (macOS)
if: matrix.platform == 'macos' if: matrix.platform == 'macos'
run: sudo mkdir -p /Users/runner && sudo chown $USER /Users/runner run: |
mkdir -p ${{ github.workspace }}/.toolcache
echo "AGENT_TOOLSDIRECTORY=${{ github.workspace }}/.toolcache" >> $GITHUB_ENV
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v5 uses: actions/setup-python@v5