Skip to content

Commit

Permalink
Temporary fix for env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Jan 17, 2025
1 parent cfdf33f commit a5086ab
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,9 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: Fix PATH and XDG_CONFIG_HOME for ARM64 Linux runners (actions/partner-runner-images#25)
if: matrix.os == 'ubuntu-24.04-arm'
run: for var in PATH XDG_CONFIG_HOME; do sed -Ee "s/^/${var}=/" -e 's/(runner)admin/\1/g' <<< "${!var}"; done | tee -a "$GITHUB_ENV"
- name: Install tox
run: |
echo PATH; echo $PATH
Expand Down

0 comments on commit a5086ab

Please sign in to comment.