Skip to content

Commit 939f2b9

Browse files
committed
Temporary fix for env variables
1 parent 7fb251b commit 939f2b9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,9 @@ jobs:
158158
with:
159159
python-version: ${{ matrix.python }}
160160

161+
- name: Fix PATH and XDG_CONFIG_HOME for ARM64 Linux runners (actions/partner-runner-images#25)
162+
if: matrix.os == 'ubuntu-24.04-arm'
163+
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"
161164
- name: Install tox
162165
run: |
163166
echo PATH; echo $PATH

0 commit comments

Comments
 (0)