Skip to content

Commit

Permalink
test sparse registry
Browse files Browse the repository at this point in the history
  • Loading branch information
Swatinem committed Jul 9, 2022
1 parent 875be5c commit 911d8e9
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/sparse-registry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: sparse-registry

on: [push, pull_request]

jobs:
sparse-registry:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]

name: Test `cargo check/test` with sparse registry on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

env:
CARGO_TERM_COLOR: always
CARGO_UNSTABLE_SPARSE_REGISTRY: true

steps:
- uses: actions/checkout@v2

- run: |
rustup toolchain install nightly --profile minimal
rustup default nightly
- uses: ./
with:
workspaces: tests

- run: |
cargo check
cargo test
working-directory: tests
2 changes: 0 additions & 2 deletions src/cleanup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ export async function cleanTargetDir(targetDir: string, packages: Packages) {
await rm(dir.path, dirent);
}
}

await fs.promises.unlink(path.join(targetDir, "./.rustc_info.json"));
}

async function cleanProfileTarget(profileDir: string, packages: Packages) {
Expand Down

0 comments on commit 911d8e9

Please sign in to comment.