mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
MacOS github CI workaround (#411)
This commit is contained in:
parent
1f674ac2c3
commit
7351ab4a30
1 changed files with 4 additions and 1 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue