-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (43 loc) · 1.03 KB
/
ci-emsdk.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
name: CI
on:
workflow_dispatch:
release:
# this runs CI only when a release is created at first (and not when it is
# edited or published)
types: [created]
push:
branches: main
pull_request:
branches: main
jobs:
build:
runs-on: ubuntu-22.04
env:
CONTAINER_PATH: /tmp/sdk/fs
steps:
- uses: actions/[email protected]
- name: Display CI properties
run: |
WD=$(pwd)
python3 -V
echo $WD
clang --version | head -n 1
echo
gcc --version | head -n 1
echo "Github env:"
env|grep GITHUB
echo "Android support:"
env|grep ANDROID
echo "Node :"
node -v
- name: Build sdk
run: |
./proot.sh
- name: Upload sdk to Github Releases
if: github.event_name == 'release'
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: /tmp/sdk/fs/tmp/sdk/*.tar.lz4
file_glob: true
tag: ${{ github.ref }}