Skip to content

Commit

Permalink
Don't pass around build outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
yamadapc committed Aug 25, 2024
1 parent b3be199 commit 55bfa57
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 43 deletions.
15 changes: 0 additions & 15 deletions .github/actions/download_rust_target/action.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/actions/upload_rust_target/action.yml

This file was deleted.

13 changes: 0 additions & 13 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,8 @@ jobs:
cache_key: ${{ matrix.os }}_build
- name: Run build
run: cargo build
- uses: ./.github/actions/upload_rust_target

test-rust:
needs:
- build-rust
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -44,13 +41,10 @@ jobs:
- uses: ./.github/actions/common
with:
cache_key: ${{ matrix.os }}_test
- uses: ./.github/actions/download_rust_target
- name: Run tests
run: ./scripts/test.sh

lint-rust:
needs:
- build-rust
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -64,13 +58,10 @@ jobs:
- uses: ./.github/actions/common
with:
cache_key: ${{ matrix.os }}_lint
- uses: ./.github/actions/download_rust_target
- name: Run clippy
run: ./scripts/clippy.sh

build-release-binaries:
needs:
- build-rust
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -84,7 +75,6 @@ jobs:
- uses: ./.github/actions/common
with:
cache_key: ${{ matrix.os }}_build_release
- uses: ./.github/actions/download_rust_target
- name: Build release binaries
run: |
cargo build --release \
Expand All @@ -93,8 +83,6 @@ jobs:
--package tas_v2
validate-licenses:
needs:
- build-rust
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -108,7 +96,6 @@ jobs:
- uses: ./.github/actions/common
with:
cache_key: ${{ matrix.os }}_about
- uses: ./.github/actions/download_rust_target
- name: Validate license information
run: |
cargo about generate about.hbs

0 comments on commit 55bfa57

Please sign in to comment.