mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-28 01:01:53 +03:00
setup CI runs on pedersen hash example
This commit is contained in:
parent
ea742a5a4e
commit
576823df49
3
.github/workflows/leo-add-remove.yml
vendored
3
.github/workflows/leo-add-remove.yml
vendored
@ -42,9 +42,6 @@ jobs:
|
|||||||
cd .. && leo new my-app && cd my-app
|
cd .. && leo new my-app && cd my-app
|
||||||
leo login -u "$USER" -p "$PASS"
|
leo login -u "$USER" -p "$PASS"
|
||||||
leo add argus4130/xnor
|
leo add argus4130/xnor
|
||||||
leo setup
|
|
||||||
leo setup
|
|
||||||
leo setup --skip-key-check
|
|
||||||
leo remove xnor
|
leo remove xnor
|
||||||
leo clean
|
leo clean
|
||||||
|
|
||||||
|
47
.github/workflows/leo-setup.yml
vendored
Normal file
47
.github/workflows/leo-setup.yml
vendored
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
name: leo-setup
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
paths-ignore:
|
||||||
|
- 'docs/**'
|
||||||
|
- 'documentation/**'
|
||||||
|
env:
|
||||||
|
RUST_BACKTRACE: 1
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
add:
|
||||||
|
name: Add Package ('leo add')
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- name: Install Rust
|
||||||
|
uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
profile: minimal
|
||||||
|
toolchain: nightly
|
||||||
|
override: true
|
||||||
|
components: rustfmt
|
||||||
|
|
||||||
|
- name: Install Leo
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
env:
|
||||||
|
CARGO_NET_GIT_FETCH_WITH_CLI: true
|
||||||
|
with:
|
||||||
|
command: install
|
||||||
|
args: --path .
|
||||||
|
|
||||||
|
- name: 'leo setup for examples'
|
||||||
|
env:
|
||||||
|
USER: ${{ secrets.ALEO_PM_USERNAME }}
|
||||||
|
PASS: ${{ secrets.ALEO_PM_PASSWORD }}
|
||||||
|
run: |
|
||||||
|
cd examples/pedersen-hash
|
||||||
|
leo setup
|
||||||
|
leo setup
|
||||||
|
leo setup --skip-key-check
|
||||||
|
leo clean
|
||||||
|
|
Loading…
Reference in New Issue
Block a user