summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorRichard Menzies <52405405+WizardOhio24@users.noreply.github.com>2020-11-07 23:02:11 +0000
committerGitHub <noreply@github.com>2020-11-08 00:02:11 +0100
commit7351ab4a30e263d1e417ee1ac779169b650e018c (patch)
tree6200e3d3030ed22a51f54cc2e8c1c05cdd90a97f /.github
parent1f674ac2c31bb3138735a39c2e2219a887ef6b10 (diff)
MacOS github CI workaround (#411)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 3f33b5f7..8a068aae 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -22,7 +22,6 @@ jobs:
- uses: actions/checkout@v2
- name: Restore cargo cache
- if: matrix.os != 'macos-latest'
uses: actions/cache@v2
env:
cache-name: ci
@@ -33,6 +32,10 @@ jobs:
target
key: ${{ matrix.os }}-${{ env.cache-name }}-${{ matrix.rust }}-${{ hashFiles('Cargo.lock') }}
+ - name: MacOS Workaround
+ if: matrix.os == 'macos-latest'
+ run: cargo clean --locked -p serde_derive -p thiserror
+
- name: Install Rust
uses: actions-rs/toolchain@v1
with: