-
Notifications
You must be signed in to change notification settings - Fork 9
142 lines (142 loc) · 4.59 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
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@v3
with:
path: ~/.local/share/pnpm/store
key: build-${{ hashFiles('**/package.json') }}
- uses: actions/setup-node@v4
with:
node-version: 18
- run: corepack pnpm install
env:
PUPPETEER_SKIP_DOWNLOAD: true
- run: corepack pnpm build
- run: corepack pnpm literate
- run: corepack pnpm lint
timeout-minutes: 30
unittest:
strategy:
matrix:
node: [18, 20, '21.1']
fail-fast: false
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: ~/.local/share/pnpm/store
key: unittest-${{ matrix.node }}-${{ hashFiles('**/package.json') }}
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- 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
- run: corepack pnpm install
env:
PUPPETEER_SKIP_DOWNLOAD: true
- run: corepack pnpm test
if: ${{ matrix.node != 18 }}
- run: corepack pnpm cover
if: ${{ matrix.node == 18 }}
- uses: coverallsapp/github-action@master
if: ${{ matrix.node == 18 }}
continue-on-error: true
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
timeout-minutes: 30
integ:
strategy:
fail-fast: false
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
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@v3
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@v3
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/[email protected]
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