-
Notifications
You must be signed in to change notification settings - Fork 8
174 lines (174 loc) · 6.47 KB
/
Copy pathbuild.yml
File metadata and controls
174 lines (174 loc) · 6.47 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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
name: build
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
build:
strategy:
fail-fast: false
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: ~/.local/share/pnpm/store
key: build-${{ hashFiles('**/package.json') }}
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
- run: |
npm install -g corepack
corepack pnpm install
env:
PUPPETEER_SKIP_DOWNLOAD: true
- run: corepack pnpm build
- run: corepack pnpm lint
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: build-lib
path: pkg/*/lib/
retention-days: 1
timeout-minutes: 30
unittest:
strategy:
matrix:
include:
- node: 26
test: test
- node: 24
test: cover
fail-fast: false
name: unittest (${{ matrix.node }})
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: ~/.local/share/pnpm/store
key: unittest-${{ matrix.node }}-${{ hashFiles('**/package.json') }}
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ matrix.node }}
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '3.12'
- name: Install dependencies
run: |
echo "deb [arch=amd64 trusted=yes] https://nfd-nightly-apt.ndn.today/ubuntu noble 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@991ed9de02add3c1aea9994da573da9ae3ce7c67
- run: |
npm install -g corepack
corepack pnpm install
env:
PUPPETEER_SKIP_DOWNLOAD: true
- run: corepack pnpm ${{ matrix.test }}
- uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2.3.6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
if: ${{ matrix.test == 'cover' }}
continue-on-error: true
timeout-minutes: 30
integ:
strategy:
fail-fast: false
runs-on: ubuntu-24.04
steps:
- name: Disable Ubuntu AppArmor Namespace Restrictions
run: |
sudo sysctl -w kernel.apparmor_restrict_unprivileged_unconfined=0 || true
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 || true
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: |
~/.local/share/pnpm/store
~/.cache/puppeteer
key: integ-${{ hashFiles('**/package.json') }}
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
- name: Install dependencies
run: |
echo "deb [arch=amd64 trusted=yes] https://nfd-nightly-apt.ndn.today/ubuntu noble main" \
| sudo tee /etc/apt/sources.list.d/nfd-nightly.list
sudo apt-get update
sudo apt-get install --no-install-recommends clang-format-20 libndn-cxx-dev libpsync-dev nfd
sudo cp /etc/ndn/nfd.conf.sample /etc/ndn/nfd.conf
sudo systemctl restart nfd
- run: |
npm install -g corepack
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-24.04
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: ~/.local/share/pnpm/store
key: publish-${{ hashFiles('**/package.json') }}
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
- run: |
npm install -g corepack
corepack pnpm install
- run: corepack pnpm install
env:
PUPPETEER_SKIP_DOWNLOAD: true
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: build-lib
path: pkg/
- 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@1d6ee9b181a81033a16bd707a1401afa978daab4 # v5.0.0
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@4cbaf4c08f1a7bfa537d6113472ef4424e4eb654 # v3.0.0
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
# to update actions: corepack pnpx actions-up