Skip to content

Commit

Permalink
ci: fix tool installs
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Dec 28, 2024
1 parent eca28f3 commit bea0e6c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,10 @@ jobs:
with:
toolchain: ${{ matrix.version }}

- name: Install cargo-binstall,cargo-ci-cache-clean
uses: taiki-e/[email protected]
with:
tool: cargo-binstall,cargo-ci-cache-clean

- name: Install DB CLI tools
run: |
cargo binstall sqlx-cli --no-default-features --features=rustls,sqlite
cargo binstall diesel_cli --no-default-features --features sqlite
cargo install --force sqlx-cli --no-default-features --features=sqlite,rustls
cargo install --force diesel_cli --no-default-features --features sqlite
- name: Create Test DBs
env:
Expand Down Expand Up @@ -63,5 +58,10 @@ jobs:
cargo test -p=db-diesel --no-fail-fast -- --nocapture
timeout-minutes: 10

- name: Install cargo-ci-cache-clean
uses: taiki-e/[email protected]
with:
tool: cargo-ci-cache-clean

- name: CI cache clean
run: cargo-ci-cache-clean
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,10 @@ jobs:
with:
toolchain: ${{ matrix.version }}

- name: Install cargo-binstall,cargo-ci-cache-clean
uses: taiki-e/[email protected]
with:
tool: cargo-binstall,cargo-ci-cache-clean

- name: Install DB CLI tools
run: |
cargo binstall sqlx-cli --no-default-features --features=rustls,sqlite
cargo binstall diesel_cli --no-default-features --features sqlite
cargo install --force sqlx-cli --no-default-features --features=sqlite,rustls
cargo install --force diesel_cli --no-default-features --features sqlite
- name: Create Test DBs
env:
Expand Down Expand Up @@ -68,5 +63,10 @@ jobs:
cargo test -p=db-diesel --no-fail-fast -- --nocapture
timeout-minutes: 10

- name: Install cargo-ci-cache-clean
uses: taiki-e/[email protected]
with:
tool: cargo-ci-cache-clean

- name: CI cache clean
run: cargo-ci-cache-clean

0 comments on commit bea0e6c

Please sign in to comment.