-
Notifications
You must be signed in to change notification settings - Fork 381
50 lines (50 loc) · 1.48 KB
/
rust-encrypted-notes-vetkd-example.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: rust-encrypted-notes-vetkd
on:
push:
branches:
- master
pull_request:
paths:
- motoko/encrypted-notes-dapp-vetkd/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/rust-encrypted-notes-vetkd-example.yml
- .ic-commit
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rust-encrypted-notes-darwin:
runs-on: macos-12
steps:
- uses: actions/checkout@v1
- name: Provision Darwin
env:
NODE_VERSION: 14.21.3
run: bash .github/workflows/provision-darwin.sh
- name: Rust Encrypted Notes Darwin (unit tests)
run: |
pushd motoko/encrypted-notes-dapp-vetkd
make test-unit BUILD_ENV=rust
popd
- name: Rust Encrypted Notes Darwin (e2e)
run: |
pushd motoko/encrypted-notes-dapp-vetkd
make test-e2e BUILD_ENV=rust
popd
rust-encrypted-notes-linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Rust Encrypted Notes Linux (unit tests)
run: |
pushd motoko/encrypted-notes-dapp-vetkd
make test-unit BUILD_ENV=rust
popd
- name: Rust Encrypted Notes Linux (e2e)
run: |
pushd motoko/encrypted-notes-dapp-vetkd
make test-e2e BUILD_ENV=rust
popd