make workflow changes #739
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request | |
on: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
push: | |
branches: [master, upcoming] | |
paths-ignore: | |
- 'docs/**' | |
jobs: | |
all_github_action_checks: | |
runs-on: blacksmith-16vcpu-ubuntu-2204 | |
needs: | |
- rustfmt | |
- clippy | |
- cargo-build-test | |
steps: | |
- run: echo "Done" | |
rustfmt: | |
runs-on: blacksmith-16vcpu-ubuntu-2204 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set env vars | |
run: | | |
source ci/rust-version.sh | |
echo "RUST_STABLE=$rust_stable" >> $GITHUB_ENV | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.RUST_STABLE }} | |
override: true | |
profile: minimal | |
components: rustfmt | |
- name: Run fmt | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check | |
clippy: | |
runs-on: blacksmith-16vcpu-ubuntu-2204 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set env vars | |
run: | | |
source ci/rust-version.sh | |
echo "RUST_STABLE=$rust_stable" >> $GITHUB_ENV | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.RUST_STABLE }} | |
override: true | |
profile: minimal | |
components: clippy | |
- uses: useblacksmith/cache@v5 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: cargo-clippy-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
cargo-clippy- | |
- name: Install dependencies | |
run: ./ci/install-build-deps.sh | |
- name: Run clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --workspace --all-targets -- --deny=warnings | |
cargo-build-test: | |
runs-on: blacksmith-16vcpu-ubuntu-2204 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set env vars | |
run: | | |
source ci/rust-version.sh | |
echo "RUST_STABLE=$rust_stable" >> $GITHUB_ENV | |
source ci/solana-version.sh | |
echo "SOLANA_VERSION=$solana_version" >> $GITHUB_ENV | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.RUST_STABLE }} | |
override: true | |
profile: minimal | |
- uses: useblacksmith/cache@v5 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
# target # Removed due to build dependency caching conflicts | |
key: cargo-build-${{ hashFiles('**/Cargo.lock') }}-${{ env.RUST_STABLE}} | |
- uses: useblacksmith/cache@v5 | |
with: | |
path: | | |
~/.cargo/bin/rustfilt | |
key: cargo-bpf-bins-${{ runner.os }} | |
- uses: useblacksmith/cache@v5 | |
with: | |
path: | | |
~/.cache | |
key: solana-${{ env.SOLANA_VERSION }} | |
- name: Install dependencies | |
run: | | |
./ci/install-build-deps.sh | |
./ci/install-program-deps.sh | |
echo "$HOME/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH | |
- name: Build and test | |
run: ./ci/cargo-build-test.sh | |
cargo-coverage: | |
runs-on: blacksmith-16vcpu-ubuntu-2204 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set env vars | |
run: | | |
source ci/rust-version.sh | |
echo "RUST_STABLE=$rust_stable" >> $GITHUB_ENV | |
source ci/solana-version.sh | |
echo "SOLANA_VERSION=$solana_version" >> $GITHUB_ENV | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.RUST_STABLE }} | |
override: true | |
profile: minimal | |
- uses: useblacksmith/cache@v5 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
# target # Removed due to build dependency caching conflicts | |
key: cargo-build-${{ hashFiles('**/Cargo.lock') }}-${{ env.RUST_STABLE }} | |
- name: Install dependencies | |
run: | | |
./ci/install-build-deps.sh | |
./ci/install-program-deps.sh | |
echo "$HOME/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH | |
- name: run test coverage | |
run: ./coverage.sh | |
- name: Codecov | |
uses: codecov/codecov-action@v3.1.0 | |
with: | |
directory: target/coverage/ |