Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add vetKD system API demo #564

Merged
merged 7 commits into from
Jul 10, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/rust-vetkd-example.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: rust-vetkd
on:
push:
branches:
- master
pull_request:
paths:
- rust/vetkd/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/rust-vetkd-example.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rust-vetkd-darwin:
runs-on: macos-12
steps:
- uses: actions/checkout@v1
- name: Provision Darwin
run: bash .github/workflows/provision-darwin.sh
fspreiss marked this conversation as resolved.
Show resolved Hide resolved
- name: Rust vetKD Darwin
run: |
dfx start --background
pushd rust/vetkd
make test
popd
rust-vetkd-linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
fspreiss marked this conversation as resolved.
Show resolved Hide resolved
- name: Rust vetKD Linux
run: |
dfx start --background
pushd rust/vetkd
make test
popd
16 changes: 16 additions & 0 deletions .github/workflows/rust-vetkd-skip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: rust-vetkd
on:
pull_request:
paths-ignore:
- rust/vetkd/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/rust-vetkd-example.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: echo 'Not needed - relevant folder not touched'
24 changes: 24 additions & 0 deletions rust/vetkd/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Various IDEs and Editors
.vscode/
.idea/
**/*~

# Mac OSX temporary files
.DS_Store
**/.DS_Store

# dfx temporary files
.dfx/

# rust
target/

# generated files
src/declarations/

# frontend code
node_modules/
dist/

# environment variables
.env
Loading