-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexamples-basic-timelock-ibe.yml
More file actions
65 lines (63 loc) · 2.03 KB
/
examples-basic-timelock-ibe.yml
File metadata and controls
65 lines (63 loc) · 2.03 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
name: examples-basic-timelock-ibe
permissions: {}
on:
push:
branches:
- main
pull_request:
paths:
- examples/basic_timelock_ibe/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/examples-basic-timelock-ibe.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
examples-basic-timelock-ibe-rust-darwin:
runs-on: macos-15
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: '22'
- name: Provision Darwin
run: |
bash .github/workflows/provision-darwin.sh
- name: Install workspace dependencies
run: npm install
- name: Deploy Basic Timelock IBE Darwin
env:
ICP_CLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -eExuo pipefail
cargo install candid-extractor
pushd examples/basic_timelock_ibe
icp network start -d && icp deploy
cd frontend
npm run lint
examples-basic-timelock-ibe-rust-linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: '22'
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Install workspace dependencies
run: npm install
- name: Deploy Basic Timelock IBE Linux
env:
ICP_CLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -eExuo pipefail
cargo install candid-extractor
pushd examples/basic_timelock_ibe
icp network start -d && icp deploy
cd frontend
npm run lint