missing update #45
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-rust-sdk | |
on: | |
push: | |
branches: [dev, dev-1.6, cid_cd_tests, 'feat*', 'release-*'] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: [dev, dev-1.6, cid_cd_tests, 'feat*', 'release-*'] | |
paths-ignore: | |
- '**.md' | |
jobs: | |
build_and_test: | |
strategy: | |
matrix: | |
#https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources | |
os: [ubuntu-22.04] | |
node-version: [20.x] | |
runs-on: ${{ matrix.os }} | |
env: | |
NODE_ADDRESS: http://127.0.0.1:7777/rpc | |
EVENT_ADDRESS: http://127.0.0.1:9999/events/main | |
# WARNING: These accounts, and their private keys, are publicly known. | |
# Any funds sent to them on Mainnet or any other live network WILL BE LOST. | |
PRIVATE_KEY_USER_1: MC4CAQAwBQYDK2VwBCIEII8ULlk1CJ12ZQ+bScjBt/IxMAZNggClWqK56D1/7CbI | |
PRIVATE_KEY_USER_2: MC4CAQAwBQYDK2VwBCIEIJTD9IlUYzuMHbvAiFel/uqd6V7vUtUD19IEQlo6SAFC | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
components: rustfmt, clippy | |
target: wasm32-unknown-unknown | |
# - name: Fmt | |
# uses: actions-rs/cargo@v1 | |
# with: | |
# command: fmt | |
# args: -- --check | |
# # - name: Audit | |
# # uses: actions-rs/cargo@v1 | |
# # with: | |
# # command: audit | |
# # args: --deny warnings || true | |
# - name: Clippy | |
# uses: actions-rs/cargo@v1 | |
# with: | |
# command: clippy | |
# - name: Lint | |
# run: make check-lint | |
# - name: Use Node.js ${{ matrix.node-version }} | |
# uses: actions/setup-node@5b949b50c3461bbcd5a540b150c368278160234a #v3.4.0 | |
# with: | |
# node-version: ${{ matrix.node-version }} | |
# registry-url: 'https://registry.npmjs.org' | |
# - name: Casper node launcher js | |
# run: npx casper-node-launcher-js node --daemon | |
# - name: Unit Tests | |
# run: make test | |
# - name: Integration Tests | |
# run: make integration-test | |
# - name: E2E Tests | |
# run: make e2e-test | |
# - name: Build lib for all targets | |
# uses: actions-rs/cargo@v1 | |
# with: | |
# command: build | |
# args: --lib --all-targets | |
- name: Install Electron | |
run: | | |
sudo apt-get install --no-install-recommends -y libopenjp2-tools | |
sudo dpkg --add-architecture i386 | |
sudo mkdir -pm755 /etc/apt/keyrings | |
sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key | |
sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources | |
sudo apt update | |
sudo apt install --install-recommends winehq-stable | |
sudo apt install ca-certificates gnupg | |
sudo gpg --homedir /tmp --no-default-keyring --keyring /usr/share/keyrings/mono-official-archive-keyring.sudo gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF | |
sudo echo "deb [signed-by=/usr/share/keyrings/mono-official-archive-keyring.gpg] https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list | |
sudo apt update | |
sudo apt install mono-devel | |
- name: Install Wasm Pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Build packages and apps | |
run: make build |