-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* CI: Add scripts and all steps #### Problem This repo only contains the implementation of the program and CLI, with no way of testing that it actually works. #### Summary of changes Get this repo in shape, based on the memo repo. Does the following: * add CI for testing during PRs * add publish step (only works with CLI currently) * add dependabot * add scripts * update Cargo.toml to use crates version of spl-token * add Cargo workspace * add license * add toolchain file / format file * (temporary) Run main workflow for all PRs * Revert branch change
- Loading branch information
Showing
31 changed files
with
8,728 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
name: Setup environment | ||
|
||
inputs: | ||
cargo-cache-key: | ||
description: The key to cache cargo dependencies. Skips cargo caching if not provided. | ||
required: false | ||
cargo-cache-fallback-key: | ||
description: The fallback key to use when caching cargo dependencies. Default to not using a fallback key. | ||
required: false | ||
cargo-cache-local-key: | ||
description: The key to cache local cargo dependencies. Skips local cargo caching if not provided. | ||
required: false | ||
clippy: | ||
description: Install Clippy if `true`. Defaults to `false`. | ||
required: false | ||
rustfmt: | ||
description: Install Rustfmt if `true`. Defaults to `false`. | ||
required: false | ||
solana: | ||
description: Install Solana if `true`. Defaults to `false`. | ||
required: false | ||
|
||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Setup pnpm | ||
uses: pnpm/action-setup@v3 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: 'pnpm' | ||
|
||
- name: Install Dependencies | ||
run: pnpm install --frozen-lockfile | ||
shell: bash | ||
|
||
- name: Set Environment Variables | ||
shell: bash | ||
run: pnpm zx ./scripts/ci/set-env.mjs | ||
|
||
- name: Install Rustfmt | ||
if: ${{ inputs.rustfmt == 'true' }} | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ env.TOOLCHAIN_FORMAT }} | ||
components: rustfmt | ||
|
||
- name: Install Clippy | ||
if: ${{ inputs.clippy == 'true' }} | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ env.TOOLCHAIN_LINT }} | ||
components: clippy | ||
|
||
- name: Install Solana | ||
if: ${{ inputs.solana == 'true' }} | ||
uses: solana-program/actions/install-solana@v1 | ||
with: | ||
version: ${{ env.SOLANA_VERSION }} | ||
cache: true | ||
|
||
- name: Cache Cargo Dependencies | ||
if: ${{ inputs.cargo-cache-key && !inputs.cargo-cache-fallback-key }} | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.cargo/bin/ | ||
~/.cargo/registry/index/ | ||
~/.cargo/registry/cache/ | ||
~/.cargo/git/db/ | ||
target/ | ||
key: ${{ runner.os }}-${{ inputs.cargo-cache-key }}-${{ hashFiles('**/Cargo.lock') }} | ||
restore-keys: ${{ runner.os }}-${{ inputs.cargo-cache-key }} | ||
|
||
- name: Cache Cargo Dependencies With Fallback | ||
if: ${{ inputs.cargo-cache-key && inputs.cargo-cache-fallback-key }} | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.cargo/bin/ | ||
~/.cargo/registry/index/ | ||
~/.cargo/registry/cache/ | ||
~/.cargo/git/db/ | ||
target/ | ||
key: ${{ runner.os }}-${{ inputs.cargo-cache-key }}-${{ hashFiles('**/Cargo.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-${{ inputs.cargo-cache-key }} | ||
${{ runner.os }}-${{ inputs.cargo-cache-fallback-key }}-${{ hashFiles('**/Cargo.lock') }} | ||
${{ runner.os }}-${{ inputs.cargo-cache-fallback-key }} | ||
- name: Cache Local Cargo Dependencies | ||
if: ${{ inputs.cargo-cache-local-key }} | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
.cargo/bin/ | ||
.cargo/registry/index/ | ||
.cargo/registry/cache/ | ||
.cargo/git/db/ | ||
key: ${{ runner.os }}-${{ inputs.cargo-cache-local-key }}-${{ hashFiles('**/Cargo.lock') }} | ||
restore-keys: ${{ runner.os }}-${{ inputs.cargo-cache-local-key }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: cargo | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "08:00" | ||
timezone: UTC | ||
open-pull-requests-limit: 6 | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "09:00" | ||
timezone: UTC | ||
open-pull-requests-limit: 6 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Dependabot auto-merge | ||
on: pull_request | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
dependabot: | ||
runs-on: ubuntu-latest | ||
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'solana-program/feature-proposal' | ||
steps: | ||
- name: Enable auto-merge | ||
run: gh pr merge --auto --squash "$PR_URL" | ||
env: | ||
PR_URL: ${{ github.event.pull_request.html_url }} | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
name: Main | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
format_and_lint_programs: | ||
name: Format & Lint Programs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Environment | ||
uses: ./.github/actions/setup | ||
with: | ||
clippy: true | ||
rustfmt: true | ||
|
||
- name: Format Programs | ||
run: pnpm programs:format | ||
|
||
- name: Lint Programs | ||
run: pnpm programs:lint | ||
|
||
format_and_lint_cli: | ||
name: Format & Lint CLI | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Environment | ||
uses: ./.github/actions/setup | ||
with: | ||
clippy: true | ||
rustfmt: true | ||
|
||
- name: Format CLI | ||
run: pnpm clients:cli:format | ||
|
||
- name: Lint CLI | ||
run: pnpm clients:cli:lint | ||
|
||
audit_rust: | ||
name: Audit Rust | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Environment | ||
uses: ./.github/actions/setup | ||
with: | ||
cargo-cache-key: cargo-audit | ||
|
||
- name: Install cargo-audit | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: cargo-audit | ||
|
||
- name: Run cargo-audit | ||
run: pnpm rust:audit | ||
|
||
semver_rust: | ||
name: Check semver Rust | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Environment | ||
uses: ./.github/actions/setup | ||
with: | ||
cargo-cache-key: cargo-semver | ||
|
||
- name: Install cargo-audit | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: cargo-semver-checks | ||
|
||
- name: Run semver checks | ||
run: pnpm rust:semver | ||
|
||
spellcheck_rust: | ||
name: Spellcheck Rust | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Environment | ||
uses: ./.github/actions/setup | ||
with: | ||
cargo-cache-key: cargo-spellcheck | ||
|
||
- name: Install cargo-spellcheck | ||
uses: taiki-e/install-action@v2 | ||
with: | ||
tool: cargo-spellcheck | ||
|
||
- name: Run cargo-spellcheck | ||
run: pnpm rust:spellcheck | ||
|
||
build_programs: | ||
name: Build programs | ||
runs-on: ubuntu-latest | ||
needs: format_and_lint_programs | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Environment | ||
uses: ./.github/actions/setup | ||
with: | ||
cargo-cache-key: cargo-programs | ||
solana: true | ||
|
||
- name: Build Programs | ||
run: pnpm programs:build | ||
|
||
- name: Upload Program Builds | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: program-builds | ||
path: ./target/deploy/*.so | ||
if-no-files-found: error | ||
|
||
- name: Save Program Builds For Client Jobs | ||
uses: actions/cache/save@v4 | ||
with: | ||
path: ./**/*.so | ||
key: ${{ runner.os }}-builds-${{ github.sha }} | ||
|
||
test_programs: | ||
name: Test Programs | ||
runs-on: ubuntu-latest | ||
needs: format_and_lint_programs | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Environment | ||
uses: ./.github/actions/setup | ||
with: | ||
cargo-cache-key: cargo-program-tests | ||
cargo-cache-fallback-key: cargo-programs | ||
solana: true | ||
|
||
- name: Test Programs | ||
run: pnpm programs:test | ||
|
||
test_cli: | ||
name: Test CLI | ||
runs-on: ubuntu-latest | ||
needs: build_programs | ||
steps: | ||
- name: Git Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Environment | ||
uses: ./.github/actions/setup | ||
with: | ||
cargo-cache-key: cargo-rust-client | ||
solana: true | ||
|
||
- name: Restore Program Builds | ||
uses: actions/cache/restore@v4 | ||
with: | ||
path: ./**/*.so | ||
key: ${{ runner.os }}-builds-${{ github.sha }} | ||
|
||
- name: Test CLI | ||
run: pnpm clients:cli:test |
Oops, something went wrong.