12345678910111213141516171819202122232425262728293031323334353637383940 |
- name: "Setup Solana"
- description: "Setup Solana"
- runs:
- using: "composite"
- steps:
- - uses: actions/cache@v3
- name: Cache Solana Tool Suite
- id: cache-solana
- with:
- path: |
- ~/.cache/solana/
- ~/.local/share/solana/
- key: solana-${{ runner.os }}-v0000-${{ env.SOLANA_CLI_VERSION }}-${{ env.SOLANG_VERSION }}
- - uses: nick-fields/retry@v2
- if: steps.cache-solana.outputs.cache-hit != 'true'
- with:
- retry_wait_seconds: 300
- timeout_minutes: 2
- max_attempts: 10
- retry_on: error
- shell: bash
- command: sh -c "$(curl -sSfL https://release.solana.com/v${{ env.SOLANA_CLI_VERSION }}/install)"
- - uses: nick-fields/retry@v2
- if: steps.cache-solana.outputs.cache-hit != 'true'
- with:
- retry_wait_seconds: 300
- timeout_minutes: 2
- max_attempts: 10
- retry_on: error
- shell: bash
- command: |
- curl -sSL -o /home/runner/.local/share/solana/install/active_release/bin/solang \
- https://github.com/hyperledger/solang/releases/download/v${{ env.SOLANG_VERSION }}/solang-linux-x86-64
- chmod 755 /home/runner/.local/share/solana/install/active_release/bin/solang
- - run: echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
- shell: bash
- - run: solana-keygen new --no-bip39-passphrase
- shell: bash
- - run: solana config set --url localhost
- shell: bash
|