diff options
| author | Jun Aruga <jaruga@redhat.com> | 2025-07-22 16:12:46 +0200 |
|---|---|---|
| committer | Jun Aruga <junaruga@users.noreply.github.com> | 2025-08-12 15:24:53 +0200 |
| commit | 05b654b43f6d0e92fbc3e1e908d811f031d59e40 (patch) | |
| tree | ad401c5b1525d73d49d2944307406522543ea754 | |
| parent | 099df0b40b215b2fc5db59569d45c59ee48111a7 (diff) | |
CI: ubuntu.yml: Set HOME env on ppc64le and s390x
This is a temporary workaround.
| -rw-r--r-- | .github/workflows/ubuntu.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index ed56cd6600..749a3f3531 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -99,6 +99,16 @@ jobs: working-directory: if: ${{ endsWith(matrix.os, 's390x') }} + # A temporary workaround: Set HOME env to pass the step + # ./.github/actions/setup/directories. + # https://github.com/IBM/actionspz/issues/30 + - name: Set HOME env + run: | + echo "HOME: #{HOME}" + echo "HOME=$(ls -d ~)" >> $GITHUB_ENV + working-directory: + if: ${{ endsWith(matrix.os, 'ppc64le') || endsWith(matrix.os, 's390x') }} + - uses: ./.github/actions/setup/directories with: srcdir: src |
