File tree Expand file tree Collapse file tree 4 files changed +103
-13
lines changed
Expand file tree Collapse file tree 4 files changed +103
-13
lines changed Original file line number Diff line number Diff line change 1- name : Android CI
1+ name : Build with Hermes
22
33on : workflow_dispatch
44
2121 - name : Grant execute permission for gradlew
2222 run : chmod +x gradlew
2323
24- - name : Build with V8
25- run : ./gradlew -Pengine=V8
26-
27- - name : Build with QUICKJS
28- run : ./gradlew -Pengine=QUICKJS
29-
30- - name : Build with JSC
31- run : ./gradlew -Pengine=JSC
32-
3324 - name : Build with HERMES
3425 run : ./gradlew -Pengine=HERMES
3526
3829 with :
3930 name : release
4031 path : |
41- ./dist_v8
42- ./dist_jsc
4332 ./dist_hermes
44- ./dist_quickjs
4533
4634
Original file line number Diff line number Diff line change 1+ name : Build with JSC
2+
3+ on : workflow_dispatch
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : actions/checkout@v4
10+ - name : set up JDK 17
11+ uses : actions/setup-java@v4
12+ with :
13+ java-version : ' 17'
14+ distribution : ' temurin'
15+
16+ - name : Install dependencies
17+ run : |
18+ cd test-app/build-tools/jsparser
19+ npm install
20+
21+ - name : Grant execute permission for gradlew
22+ run : chmod +x gradlew
23+
24+ - name : Build with JSC
25+ run : ./gradlew -Pengine=JSC
26+
27+ - name : Upload artifacts
28+ uses : actions/upload-artifact@v4
29+ with :
30+ name : release
31+ path : |
32+ ./dist_jsc
33+
34+
Original file line number Diff line number Diff line change 1+ name : Build with QuickJS
2+
3+ on : workflow_dispatch
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : actions/checkout@v4
10+ - name : set up JDK 17
11+ uses : actions/setup-java@v4
12+ with :
13+ java-version : ' 17'
14+ distribution : ' temurin'
15+
16+ - name : Install dependencies
17+ run : |
18+ cd test-app/build-tools/jsparser
19+ npm install
20+
21+ - name : Grant execute permission for gradlew
22+ run : chmod +x gradlew
23+
24+ - name : Build with QUICKJS
25+ run : ./gradlew -Pengine=QUICKJS
26+
27+ - name : Upload artifacts
28+ uses : actions/upload-artifact@v4
29+ with :
30+ name : release
31+ path : |
32+ ./dist_quickjs
33+
34+
Original file line number Diff line number Diff line change 1+ name : Build with V8
2+
3+ on : workflow_dispatch
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : actions/checkout@v4
10+ - name : set up JDK 17
11+ uses : actions/setup-java@v4
12+ with :
13+ java-version : ' 17'
14+ distribution : ' temurin'
15+
16+ - name : Install dependencies
17+ run : |
18+ cd test-app/build-tools/jsparser
19+ npm install
20+
21+ - name : Grant execute permission for gradlew
22+ run : chmod +x gradlew
23+
24+ - name : Build with V8
25+ run : ./gradlew -Pengine=V8
26+
27+ - name : Upload artifacts
28+ uses : actions/upload-artifact@v4
29+ with :
30+ name : release
31+ path : |
32+ ./dist_v8
33+
34+
You can’t perform that action at this time.
0 commit comments