-
Notifications
You must be signed in to change notification settings - Fork 7
74 lines (74 loc) · 2.14 KB
/
run.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Run non-interactive demo
on:
push:
branches:
- main
pull_request:
env:
GH_TOKEN: ${{ github.token }}
jobs:
# readme:
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# os: [ macos-11, ubuntu-22.04 ]
# steps:
# - name: Checkout
# uses: actions/checkout@v3
# - name: Run the README code parts
# run: bin/test-readme
demo_current:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-11, ubuntu-22.04]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Add user path
run: |
echo "$HOME/.local/bin" >> $GITHUB_PATH
echo "$PWD/bin" >> $GITHUB_PATH
- name: Unbork mac
if: matrix.os == 'macos-11'
run: |
brew install bash
echo "/usr/local/bin" >> $GITHUB_PATH
echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
- name: Install dependencies
run: ./bin/dfx-sns-demo-install --verbose
- name: Run the demo with the current default ic commits
run: bin/dfx-sns-demo
demo_latest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-11, ubuntu-22.04]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Add user path
run: |
echo "$HOME/.local/bin" >> $GITHUB_PATH
echo "$PWD/bin" >> $GITHUB_PATH
- name: Unbork mac
if: matrix.os == 'macos-11'
run: |
brew install bash
echo "/usr/local/bin" >> $GITHUB_PATH
echo "$(brew --prefix)/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
- name: Install dependencies
run: ./bin/dfx-sns-demo-install --verbose
# Clone the ic repo so that we can find the latest published commit.
- name: Checkout ic repo
uses: actions/checkout@v3
with:
repository: dfinity/ic
ref: master
fetch-depth: 100
path: ic
- name: Run the demo with the latest repo
run: bin/dfx-sns-demo --ic_commit latest --ic_dir ic