Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): removes install gnu-tar step #413

Merged
merged 2 commits into from Apr 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 0 additions & 9 deletions .github/workflows/release.yml
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
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
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