Skip to content

Commit 05b654b

Browse files
committed
CI: ubuntu.yml: Set HOME env on ppc64le and s390x
This is a temporary workaround.
1 parent 099df0b commit 05b654b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ubuntu.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,16 @@ jobs:
9999
working-directory:
100100
if: ${{ endsWith(matrix.os, 's390x') }}
101101

102+
# A temporary workaround: Set HOME env to pass the step
103+
# ./.github/actions/setup/directories.
104+
# https://github.com/IBM/actionspz/issues/30
105+
- name: Set HOME env
106+
run: |
107+
echo "HOME: #{HOME}"
108+
echo "HOME=$(ls -d ~)" >> $GITHUB_ENV
109+
working-directory:
110+
if: ${{ endsWith(matrix.os, 'ppc64le') || endsWith(matrix.os, 's390x') }}
111+
102112
- uses: ./.github/actions/setup/directories
103113
with:
104114
srcdir: src

0 commit comments

Comments
 (0)