-
Notifications
You must be signed in to change notification settings - Fork 5
136 lines (111 loc) · 4.33 KB
/
ci-js.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
name: 'CI-CD sails-js'
on:
pull_request:
types: [opened, synchronize, reopened, labeled]
branches: [master]
push:
branches: [master]
paths:
- js/**
workflow_dispatch:
env:
BINARYEN_VERSION: version_111
jobs:
test:
if: github.event_name == 'pull_request'
runs-on: ubuntu-22.04
env:
RUSTUP_HOME: /tmp/rustup_home
steps:
- name: Cancel previous workflow runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v4
- name: "Install: NodeJS 20.x"
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: "Install: pkg dependencies"
working-directory: js
run: yarn install
- name: "Install: binaryen"
run: |
sudo wget -c https://github.com/WebAssembly/binaryen/releases/download/$BINARYEN_VERSION/binaryen-$BINARYEN_VERSION-x86_64-linux.tar.gz -O - | sudo tar -xz -C .
sudo cp binaryen-$BINARYEN_VERSION/bin/wasm-opt /usr/bin/
- name: "Prepare: build parser"
run: |
cargo build --manifest-path=idl-parser/Cargo.toml --target=wasm32-unknown-unknown --release
wasm-opt -O4 -o ./js/parser.wasm ./target/wasm32-unknown-unknown/release/sails_idl_parser.wasm
- name: "Prepare: build sails-js"
working-directory: js
run: yarn build
- name: "Prepare: build rmrk"
run: |
cargo build --manifest-path=examples/rmrk/catalog/wasm/Cargo.toml --release
cargo build --manifest-path=examples/rmrk/resource/wasm/Cargo.toml --release
cargo build --manifest-path=examples/ping/wasm/Cargo.toml --release
- name: "Prepare: build rmrk client lib"
working-directory: js
run: |
node lib/app.js generate ../examples/rmrk/catalog/wasm/rmrk-catalog.idl -o ./test/rmrk-catalog
node lib/app.js generate ../examples/rmrk/resource/wasm/rmrk-resource.idl -o ./test/rmrk-resource
node lib/app.js generate ../examples/ping/wasm/ping.idl -o ./test/ping
- name: "Prepare: download Gear node"
run: |
wget -O ./gear https://github.com/gear-tech/gear/releases/download/build/gear
chmod +x gear
- name: "Prepare: run Gear node"
run: |
nohup ./gear --dev --execution=wasm --tmp --unsafe-rpc-external --rpc-methods Unsafe --rpc-cors all &
- name: "Prepare: sleep 3 min"
run: sleep 180
- name: "Test: run"
working-directory: js
run: yarn test
publish-to-npm:
if: github.event_name == 'push'
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check package version
uses: EndBug/version-check@v2
id: check
with:
file-name: js/package.json
file-url: https://unpkg.com/sails-js@latest/package.json
static-checking: localIsNew
- name: Use node 18.x
if: steps.check.outputs.changed == 'true'
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: "Prepare: install dependencies"
if: steps.check.outputs.changed == 'true'
working-directory: js
run: yarn install
- name: "Install: binaryen"
if: steps.check.outputs.changed == 'true'
run: |
sudo wget -c https://github.com/WebAssembly/binaryen/releases/download/$BINARYEN_VERSION/binaryen-$BINARYEN_VERSION-x86_64-linux.tar.gz -O - | sudo tar -xz -C .
sudo cp binaryen-$BINARYEN_VERSION/bin/wasm-opt /usr/bin/
- name: "Prepare: build parser"
if: steps.check.outputs.changed == 'true'
run: |
cargo build --manifest-path=idl-parser/Cargo.toml --target=wasm32-unknown-unknown --release
wasm-opt -O4 -o ./js/parser.wasm ./target/wasm32-unknown-unknown/release/sails_idl_parser.wasm
- name: "Prepare: build sails-js"
if: steps.check.outputs.changed == 'true'
working-directory: js
run: yarn build
- name: Publish
if: steps.check.outputs.changed == 'true'
working-directory: js/lib
run: |
export token=$(printenv npm_token)
npm config set //registry.npmjs.org/:_authToken=$token
npm publish
env:
npm_token: ${{ secrets.NPM_TOKEN }}