Skip to content

chore(deps): bump ckb-related crates from 0.110.2 to 0.111.0-rc8 #367

chore(deps): bump ckb-related crates from 0.110.2 to 0.111.0-rc8

chore(deps): bump ckb-related crates from 0.110.2 to 0.111.0-rc8 #367

Workflow file for this run

name: CI
on:
push
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -D warnings
RUST_BACKTRACE: full
RUST_TOOLCHAIN: 1.72.1
jobs:
test:
name: Tests / Build & Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-2019 ]
steps:
- uses: actions/checkout@v2
- if: matrix.os == 'windows-2019'
name: Windows Dependencies
run: |
iwr -useb get.scoop.sh -outfile 'install-scoop.ps1'
.\install-scoop.ps1 -RunAsAdmin
echo "LIBCLANG_PATH=$($HOME)/scoop/apps/llvm/current/bin" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "$env:USERPROFILE\scoop\shims" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
scoop install llvm yasm
- name: Build
run: cargo build
- name: UnitTest
run: cargo test