-
Notifications
You must be signed in to change notification settings - Fork 9
147 lines (147 loc) · 4.79 KB
/
build.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
name: build
on:
push:
pull_request:
permissions: {}
jobs:
build:
strategy:
fail-fast: false
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.local/share/pnpm/store
key: build-${{ hashFiles('**/package.json') }}
- uses: actions/setup-node@v4
with:
node-version: 20
- run: corepack pnpm install
env:
PUPPETEER_SKIP_DOWNLOAD: true
- run: corepack pnpm build
- run: corepack pnpm lint
timeout-minutes: 30
unittest:
strategy:
matrix:
node: [20, 22]
fail-fast: false
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.local/share/pnpm/store
key: unittest-${{ matrix.node }}-${{ hashFiles('**/package.json') }}
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
echo "deb [arch=amd64 trusted=yes] https://nfd-nightly-apt.ndn.today/ubuntu jammy main" \
| sudo tee /etc/apt/sources.list.d/nfd-nightly.list
sudo apt-get update
sudo apt-get install --no-install-recommends ndnsec
pip install git+https://github.com/UCLA-IRL/ndn-python-repo@2dcd229a4cb81927a52e8a8f1d963c55ee939ffa
- run: corepack pnpm install
env:
PUPPETEER_SKIP_DOWNLOAD: true
- run: corepack pnpm test
if: ${{ matrix.node == 22 }}
- run: corepack pnpm cover
env:
NODE_OPTIONS: --experimental-websocket
if: ${{ matrix.node == 20 }}
- uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
if: ${{ matrix.node == 20 }}
continue-on-error: true
timeout-minutes: 30
integ:
strategy:
fail-fast: false
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.local/share/pnpm/store
~/.cache/puppeteer
key: integ-${{ hashFiles('**/package.json') }}
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: |
echo "deb [arch=amd64 trusted=yes] https://nfd-nightly-apt.ndn.today/ubuntu jammy main" \
| sudo tee /etc/apt/sources.list.d/nfd-nightly.list
sudo apt-get update
sudo apt-get install --no-install-recommends clang-format-15 libndn-cxx-dev libpsync-dev nfd
- run: corepack pnpm install
- run: corepack pnpm build
- name: Check dependencies and devDependencies
run: node mk/check-dep.mjs
- run: corepack pnpm literate lint
- run: corepack pnpm literate
- run: cd integ/browser-tests && corepack pnpm test
- run: cd integ/cxx-tests && corepack pnpm test
- name: Check C++ and bash code style
run: |
corepack pnpm clang-format
corepack pnpm shfmt
git diff --exit-code
timeout-minutes: 30
publish:
needs: [build, unittest, integ]
if: ${{ github.repository == 'yoursunny/NDNts' && github.event_name == 'push' }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.local/share/pnpm/store
key: publish-${{ hashFiles('**/package.json') }}
- uses: actions/setup-node@v4
with:
node-version: 20
- run: corepack pnpm install
env:
PUPPETEER_SKIP_DOWNLOAD: true
- run: corepack pnpm build
- run: bash mk/publish-nightly.sh
env:
GTAGID: G-YSW3MP43Z4
- run: |
corepack pnpm typedoc
[[ -f docs/typedoc/modules/_ndn_packet.html ]]
env:
GTAGID: G-YSW3MP43Z4
- uses: crazy-max/ghaction-github-pages@v4
with:
repo: yoursunny/NDNts-nightly
build_dir: ./mk/nightly-output/
commit_message: ${{ github.sha }} ${{ github.run_id }}
fqdn: ndnts-nightly.ndn.today
env:
GH_PAT: ${{ secrets.NIGHTLY_ACCESS_TOKEN }}
- uses: nwtgck/actions-netlify@v3
with:
publish-dir: ./docs/
production-deploy: true
github-token: ${{ secrets.GITHUB_TOKEN }}
deploy-message: ${{ github.sha }} ${{ github.run_id }}
enable-pull-request-comment: false
enable-commit-comment: false
enable-commit-status: false
enable-github-deployment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: 8987d2bb-7638-4d6b-adff-806fe3b7309a
timeout-minutes: 30