-
Notifications
You must be signed in to change notification settings - Fork 438
40 lines (40 loc) · 1.03 KB
/
motoko-filevault-example.yml
File metadata and controls
40 lines (40 loc) · 1.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
name: motoko-filevault
on:
push:
branches:
- master
pull_request:
paths:
- motoko/filevault/**
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/motoko-filevault-example.yml
- .ic-commit
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
motoko-filevault-darwin:
runs-on: macos-15
steps:
- uses: actions/checkout@v1
- name: Provision Darwin
run: bash .github/workflows/provision-darwin.sh
- name: Motoko Filevault Darwin
run: |
dfx start --background
pushd motoko/filevault
make install
popd
motoko-filevault-linux:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Motoko Filevault Linux
run: |
dfx start --background
pushd motoko/filevault
make install
popd