Allow bank hash file to contain details for multiple slots (#34516) #9957
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: client_targets | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
paths: | |
- "client/**" | |
- "sdk/**" | |
- ".github/workflows/client-targets.yml" | |
- "ci/rust-version.sh" | |
- "**/Cargo.toml" | |
- "**/Cargo.lock" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
android: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-20.04 | |
target: | |
- x86_64-linux-android | |
- aarch64-linux-android | |
- i686-linux-android | |
- armv7-linux-androideabi | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- run: cargo install [email protected] | |
- name: Setup Rust | |
run: | | |
source ci/rust-version.sh stable | |
rustup target add --toolchain "$rust_stable" ${{ matrix.target }} | |
- name: Stable build | |
run: ./cargo stable ndk --target ${{ matrix.target }} build -p solana-client | |
ios: | |
strategy: | |
matrix: | |
os: | |
- macos-11 | |
target: | |
- aarch64-apple-ios | |
- x86_64-apple-ios | |
- aarch64-apple-darwin | |
- x86_64-apple-darwin | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Rust | |
run: | | |
source ci/rust-version.sh stable | |
rustup target add --toolchain "$rust_stable" ${{ matrix.target }} | |
- name: Stable build | |
run: ./cargo stable build --target ${{ matrix.target }} -p solana-client | |
error_reporting: | |
needs: | |
- android | |
- ios | |
if: failure() && github.event_name == 'push' | |
uses: ./.github/workflows/error-reporting.yml | |
secrets: | |
WEBHOOK: ${{ secrets.SLACK_ERROR_REPORTING_WEBHOOK }} |