aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJonas Schievink <[email protected]>2020-10-12 18:19:24 +0100
committerJonas Schievink <[email protected]>2020-10-12 18:51:49 +0100
commitf8be6c636cf66f638befef9c3425b3685ced45a2 (patch)
tree3048092920d178ff4f9466db7547c9548fc3200a /.github
parentc518fe7f6ca1c9a15d7d822654303155c90ce695 (diff)
macOS: install GNU tar
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yaml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index a19bc9ad3..5e92fbb6d 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -42,6 +42,12 @@ jobs:
42 if: matrix.os == 'windows-latest' 42 if: matrix.os == 'windows-latest'
43 run: Rename-Item C:\Users\runneradmin\.rustup\toolchains\stable-x86_64-pc-windows-msvc C:\Users\runneradmin\.rustup\toolchains\stable-x86_64-pc-windows-msvc.old 43 run: Rename-Item C:\Users\runneradmin\.rustup\toolchains\stable-x86_64-pc-windows-msvc C:\Users\runneradmin\.rustup\toolchains\stable-x86_64-pc-windows-msvc.old
44 44
45 - name: Install GNU tar
46 if: matrix.os == 'macos-latest'
47 run: |
48 brew install gnu-tar
49 echo PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH" >> $GITHUB_ENV
50
45 - name: Install Rust toolchain 51 - name: Install Rust toolchain
46 uses: actions-rs/toolchain@v1 52 uses: actions-rs/toolchain@v1
47 with: 53 with: