diff options
| author | Linus Färnstrand <faern@faern.net> | 2023-05-11 20:08:40 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2023-05-24 13:06:19 +0200 |
| commit | 567b12adbbd473467749252effc364b536ad4eaf (patch) | |
| tree | 9af45c119529c2d8fc87b6a174e6f4f2d5bdee07 /.github/workflows | |
| parent | dfbcf0e47721b64500a416793d7c61a76850d01f (diff) | |
| download | mullvadvpn-567b12adbbd473467749252effc364b536ad4eaf.tar.xz mullvadvpn-567b12adbbd473467749252effc364b536ad4eaf.zip | |
Add github actions HOME FIX(tm)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/clippy.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 882cc62d09..31f97881ee 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -74,6 +74,11 @@ jobs: image: ${{ needs.prepare-android.outputs.container_image_android }} steps: + # Fix for HOME path overridden by GH runners when building in containers, see: + # https://github.com/actions/runner/issues/863 + - name: Fix HOME path + run: echo "HOME=/root" >> $GITHUB_ENV + - name: Checkout repository uses: actions/checkout@v3 |
