chore(deps): bump ic-crypto-ed25519 from 7927c34
to fb3d35d
#230
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
paths-ignore: | |
- "README.md" | |
jobs: | |
cargo-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install PocketIC server | |
uses: dfinity/pocketic@main | |
with: | |
pocket-ic-server-version: "7.0.0" | |
- uses: Swatinem/rust-cache@v2 | |
- name: Cargo test | |
run: unset CI && cargo test | |
# docker-build: | |
# runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# include: | |
# - project: rpc | |
# artifact: ic-solana-rpc.wasm.gz | |
# - project: wallet | |
# artifact: ic-solana-wallet.wasm.gz | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# - uses: docker-practice/actions-setup-docker@master | |
# timeout-minutes: 12 | |
# - name: 'Deterministic build' | |
# run: ./scripts/docker-build --${{ matrix.project }} | |
# - name: Archive Artifact | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: ${{ matrix.artifact }} | |
# path: artifacts/${{ matrix.project }}/${{ matrix.artifact }} | |
# - name: Add summary | |
# run: | | |
# hash=`cat artifacts/${{ matrix.project }}/${{ matrix.artifact }}.sha256` | |
# echo "SHA-256 hash: ${hash}" >> $GITHUB_STEP_SUMMARY | |
# e2e: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@master | |
# | |
# - uses: Swatinem/rust-cache@v2 | |
# | |
# - name: Install dfx | |
# uses: dfinity/setup-dfx@main | |
# | |
# - name: Start dfx | |
# run: dfx start --background | |
# | |
# - name: Run E2E tests | |
# run: scripts/e2e | |
# | |
# - name: Run examples | |
# run: scripts/examples | |
# |