-
Notifications
You must be signed in to change notification settings - Fork 3
49 lines (45 loc) · 1.33 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
name: opencv-em-script
on:
push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Set output
id: vars
run: echo name=tag::${GITHUB_REF#refs/*/} >> $GITHUB_OUTPUT
- name: Check output
env:
RELEASE_VERSION: ${{ steps.vars.outputs.tag }}
run: |
echo $RELEASE_VERSION
echo ${{ steps.vars.outputs.tag }}
- run: git submodule update --init
- run: sudo apt-get update && sudo apt install pcregrep libjpeg-dev ninja-build
- run: ./build.sh linux
- run: ./build.sh emscripten
- run: ./build.sh emscripten-simd
- run: echo "Done!"
- uses: actions/upload-artifact@v3
with:
name: build
path: |
packaging/opencv-4.7.0.zip
packaging/opencv-js-4.7.0-emcc-3.1.26.zip
packaging/opencv-js-simd-4.7.0-emcc-3.1.26.zip
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
packaging/opencv-4.7.0.zip
packaging/opencv-js-4.7.0-emcc-3.1.26.zip
packaging/opencv-js-simd-4.7.0-emcc-3.1.26.zip