-
Notifications
You must be signed in to change notification settings - Fork 6
140 lines (110 loc) · 3.41 KB
/
publish.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
name: publish
on:
release:
types:
- published
jobs:
build:
strategy:
matrix:
node-version: [10.x]
os: [ubuntu-latest, macos-latest, windows-2019]
name: build ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install gcc-multilib
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt update
sudo apt install g++-multilib -y
- name: Setup node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- id: get_version
name: Extract semver
uses: battila7/get-version-action@v2
- name: Set package version
run: npm --no-git-tag-version version ${{ steps.get_version.outputs.version-without-v }}
- name: Install npm dependencies
run: npm ci --ignore-scripts
- name: Build artifact (ia32)
if: matrix.os != 'macos-latest'
run: npm run build --target_arch=ia32
- name: Build artifact (x64)
run: npm run build --target_arch=x64
- name: Run tests
run: npm run test
- name: Upload to release
if: steps.get_version.outputs.is-semver == 'true'
uses: csexton/release-asset-action@v2
with:
pattern: packages/utimes*.tar.gz
github-token: ${{ secrets.GITHUB_TOKEN }}
release-url: ${{ github.event.release.upload_url }}
build-arm:
strategy:
matrix:
arch: [aarch64, armv7]
distro: [ubuntu18.04]
name: build ${{ matrix.distro }}:${{ matrix.arch }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- id: get_version
name: Extract semver
uses: battila7/get-version-action@v2
- name: Set package version
run: npm --no-git-tag-version version ${{ steps.get_version.outputs.version-without-v }}
- name: Build artifact (${{ matrix.arch }})
uses: uraimo/[email protected]
with:
arch: ${{ matrix.arch }}
distro: ${{ matrix.distro }}
dockerRunArgs: --volume "${PWD}:/repo"
install: |
apt-get update -y
apt-get install -y curl
curl -fsSL https://deb.nodesource.com/setup_10.x | bash -
apt-get install -y make g++ python nodejs
run: |
cd /repo
npm ci --ignore-scripts
npm run build
npm run test
- name: Upload to release
if: steps.get_version.outputs.is-semver == 'true'
uses: csexton/release-asset-action@v2
with:
pattern: packages/utimes*.tar.gz
github-token: ${{ secrets.GITHUB_TOKEN }}
release-url: ${{ github.event.release.upload_url }}
publish:
needs: [build, build-arm]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup node.js
uses: actions/setup-node@v2
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
- id: get_version
name: Extract semver
uses: battila7/get-version-action@v2
- name: Set package version
run: npm --no-git-tag-version version ${{ steps.get_version.outputs.version-without-v }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build source files
run: npm run tsc
- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}