-
Notifications
You must be signed in to change notification settings - Fork 6
83 lines (81 loc) · 2.53 KB
/
examples-password-manager.yml
File metadata and controls
83 lines (81 loc) · 2.53 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Known failure: https://dfinity.atlassian.net/browse/EM-7
name: examples-password-manager
permissions: {}
on:
push:
branches:
- main
pull_request:
paths:
- examples/password_manager/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/examples-password-manager.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
DFX_VERSION: 0.29.1
jobs:
examples-password-manager-rust-darwin:
runs-on: macos-15
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- name: Provision Darwin
run: |
bash .github/workflows/provision-darwin.sh
- name: Deploy Password Manager Darwin
run: |
set -eExuo pipefail
cd examples/password_manager/rust
dfx start --background && dfx deploy
cd frontend
npm run lint
examples-password-manager-rust-linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Deploy Password Manager Linux
run: |
set -eExuo pipefail
cd examples/password_manager/rust
dfx start --background && dfx deploy
cd frontend
npm run lint
examples-password-manager-motoko-darwin:
runs-on: macos-15
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- name: Provision Darwin
run: |
bash .github/workflows/provision-darwin.sh
- name: Deploy Password Manager Darwin
run: |
set -eExuo pipefail
cd examples/password_manager/motoko
dfx start --background && dfx deploy
cd frontend
npm run lint
examples-password-manager-motoko-linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Deploy Password Manager Linux
run: |
set -eExuo pipefail
cd examples/password_manager/motoko
dfx start --background && dfx deploy
cd frontend
npm run lint