Fixed incorrect bits info #888
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
name: C.I. Checks | |
jobs: | |
update-deps: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- id: cargo-deps | |
name: Cache cargo dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry/index | |
~/.cargo/registry/cache | |
~/.cargo/git/db | |
key: cargo-deps-${{ hashFiles('**/Cargo.lock') }} | |
- if: ${{ steps.cargo-deps.outputs.cache-hit != 'true' }} | |
id: ls-crates-io-index | |
name: Get head commit hash of crates.io registry index | |
shell: bash | |
run: | | |
commit=$( | |
git ls-remote --heads https://github.com/rust-lang/crates.io-index.git master | | |
cut -f 1 | |
) | |
echo "::set-output name=head::$commit" | |
- if: ${{ steps.cargo-deps.outputs.cache-hit != 'true' }} | |
name: Cache cargo registry index | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cargo/registry/index | |
key: cargo-index-${{ steps.ls-crates-io-index.outputs.head }} | |
restore-keys: cargo-index- | |
- if: ${{ steps.cargo-deps.outputs.cache-hit != 'true' }} | |
name: Fetch dependencies and update registry index | |
run: cargo fetch --locked | |
check: | |
name: Check | |
needs: update-deps | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: Cache cargo dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry/index | |
~/.cargo/registry/cache | |
~/.cargo/git/db | |
key: cargo-deps-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install uniffi | |
uses: actions-rs/[email protected] | |
with: | |
crate: uniffi_bindgen | |
version: 0.16.0 | |
use-tool-cache: true | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Run cargo check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
test: | |
name: Test Suite | |
needs: update-deps | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: Restore cargo dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry/index | |
~/.cargo/registry/cache | |
~/.cargo/git/db | |
key: cargo-deps-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install uniffi | |
uses: actions-rs/[email protected] | |
with: | |
crate: uniffi_bindgen | |
version: 0.16.0 | |
use-tool-cache: true | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Run cargo test | |
uses: actions-rs/cargo@v1 | |
continue-on-error: false | |
with: | |
command: test | |
lints: | |
name: Lints | |
needs: update-deps | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
components: rustfmt, clippy | |
- name: Run cargo fmt | |
uses: actions-rs/cargo@v1 | |
continue-on-error: false | |
with: | |
command: fmt | |
args: --all -- --check | |
- name: Restore cargo dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry/index | |
~/.cargo/registry/cache | |
~/.cargo/git/db | |
key: cargo-deps-${{ hashFiles('**/Cargo.lock') }} | |
- name: Run cargo clippy | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --all-features --all-targets -- -D warnings | |
test-wasm: | |
name: Wasm-pack test | |
needs: update-deps | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Restore cargo dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry/index | |
~/.cargo/registry/cache | |
~/.cargo/git/db | |
key: cargo-deps-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install wasm pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Test in chrome | |
run: wasm-pack test --headless --chrome ./bindings/wallet-js | |
- name: Test in firefox | |
run: wasm-pack test --headless --firefox ./bindings/wallet-js | |
eslint-cordova-plugin: | |
name: check eslint for cordova plugin | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12.x | |
- name: install dependencies | |
working-directory: ./bindings/wallet-cordova | |
run: npm install | |
- name: eslint | |
working-directory: ./bindings/wallet-cordova | |
run: npm run eslint | |
check-c-header: | |
name: check c-header is up-to-date | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
components: rustfmt, clippy | |
- name: Install cbindgen | |
uses: actions-rs/[email protected] | |
with: | |
crate: cbindgen | |
use-tool-cache: true | |
- name: run check script | |
run: bash bindings/wallet-c/check_header.sh |