Skip to content

Commit

Permalink
chore(ci): removes install gnu-tar step (#413)
Browse files Browse the repository at this point in the history
Co-authored-by: Irina Shestak <[email protected]>
  • Loading branch information
EverlastingBugstopper and lrlna authored Apr 6, 2021
1 parent f9a4840 commit fd4e795
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,6 @@ jobs:
if: matrix.build == 'macos'
run: brew install p7zip

# We install gnu-tar because BSD tar is buggy on Github's MacOS machines.
# https://github.com/actions/cache/issues/403
# This can be removed if that issue is ever closed
- name: Install GNU tar (MacOS)
if: matrix.build == 'macos'
run: |
brew install gnu-tar
echo PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH" >> $GITHUB_ENV
- name: Build (Linux)
if: matrix.build == 'linux'
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,20 @@ jobs:
key: ${{ matrix.build }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ matrix.build }}-cargo-registry-
- name: Cache Cargo index
uses: actions/cache@v2
with:
path: ~/.cargo/git
key: ${{ matrix.build }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ matrix.build }}-cargo-index-
- name: Install Rust
run: |
rustup update ${{ matrix.rust }} --no-self-update
rustup default ${{ matrix.rust }}
- name: Run Tests
run: cargo test --workspace --locked
env:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,15 @@ jobs:
key: ${{ matrix.build }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ matrix.build }}-cargo-registry-
- name: Cache Cargo index
uses: actions/cache@v2
with:
path: ~/.cargo/git
key: ${{ matrix.build }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ matrix.build }}-cargo-index-
- name: Install Rust
run: |
rustup update ${{ matrix.rust }} --no-self-update
Expand Down

0 comments on commit fd4e795

Please sign in to comment.