forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/Bunkr-2FA/solana
- Loading branch information
Showing
312 changed files
with
15,140 additions
and
8,345 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
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 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
os_name="$1" | ||
|
||
case "$os_name" in | ||
"Windows") | ||
;; | ||
"macOS") | ||
brew install protobuf | ||
;; | ||
"Linux") ;; | ||
*) | ||
echo "Unknown Operating System" | ||
;; | ||
esac |
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,50 @@ | ||
name: Cargo | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- v[0-9]+.[0-9]+ | ||
pull_request: | ||
branches: | ||
- master | ||
- v[0-9]+.[0-9]+ | ||
paths: | ||
- "**.rs" | ||
- "**/Cargo.toml" | ||
- "**/Cargo.lock" | ||
- ".github/scripts/cargo-clippy-before-script.sh" | ||
- ".github/workflows/cargo.yml" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
SHELL: /bin/bash | ||
SCCACHE_GHA_ENABLED: "true" | ||
RUSTC_WRAPPER: "sccache" | ||
|
||
jobs: | ||
clippy: | ||
strategy: | ||
matrix: | ||
os: | ||
- macos-latest | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: mozilla-actions/[email protected] | ||
with: | ||
version: "v0.5.4" | ||
|
||
- shell: bash | ||
run: .github/scripts/cargo-clippy-before-script.sh ${{ runner.os }} | ||
|
||
- shell: bash | ||
run: | | ||
source ci/rust-version.sh all | ||
rustup component add clippy --toolchain "$rust_stable" | ||
rustup component add clippy --toolchain "$rust_nightly" | ||
scripts/cargo-clippy.sh |
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,53 @@ | ||
name: Downstream Project - Anchor | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- v[0-9]+.[0-9]+ | ||
pull_request: | ||
branches: | ||
- master | ||
- v[0-9]+.[0-9]+ | ||
paths: | ||
- "**.rs" | ||
- "Cargo.toml" | ||
- "Cargo.lock" | ||
- "cargo-build-bpf" | ||
- "cargo-test-bpf" | ||
- "cargo-build-sbf" | ||
- "cargo-test-sbf" | ||
- ".github/workflows/downstream-project-anchor.yml" | ||
workflow_call: | ||
inputs: | ||
branch: | ||
required: false | ||
type: string | ||
default: "master" | ||
|
||
env: | ||
SHELL: /bin/bash | ||
SCCACHE_GHA_ENABLED: "true" | ||
RUSTC_WRAPPER: "sccache" | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
version: ["v0.29.0"] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- shell: bash | ||
run: | | ||
.github/scripts/purge-ubuntu-runner.sh | ||
- uses: mozilla-actions/[email protected] | ||
with: | ||
version: "v0.5.4" | ||
|
||
- shell: bash | ||
run: | | ||
source .github/scripts/downstream-project-spl-install-deps.sh | ||
./scripts/build-downstream-anchor-projects.sh ${{ matrix.version }} |
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
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
Oops, something went wrong.