-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,13 +13,17 @@ jobs: | |
|
||
- name: Download monolithic libraries to v8.out directory and bundle Linux jar and Android aar file | ||
run: | | ||
curl -O https://download.eclipsesource.com/j2v8/v8/libv8_8.3.110.9_monolith.zip | ||
mkdir -p v8.out | ||
unzip libv8_8.3.110.9_monolith.zip -d v8.out | ||
# start j2v8 build | ||
python build.py -t linux -a x64 --docker v8 j2v8cmake j2v8jni j2v8cpp j2v8optimize j2v8java j2v8test | ||
python build.py -t android -a x86 --docker --keep-native-libs v8 j2v8cmake j2v8jni j2v8cpp j2v8optimize j2v8java | ||
python build.py -t android -a arm --docker --keep-native-libs v8 j2v8cmake j2v8jni j2v8cpp j2v8optimize j2v8java | ||
python build.py -t android -a x86_64 --docker --keep-native-libs v8 j2v8cmake j2v8jni j2v8cpp j2v8optimize j2v8java | ||
python build.py -t android -a arm64 --docker --keep-native-libs v8 j2v8cmake j2v8jni j2v8cpp j2v8optimize j2v8java | ||
python build.py -t linux -a x64 --docker j2v8cmake j2v8jni j2v8cpp j2v8optimize j2v8java j2v8test | ||
python build.py -t android -a x86 --docker --keep-native-libs j2v8cmake j2v8jni j2v8cpp j2v8optimize j2v8java | ||
python build.py -t android -a arm --docker --keep-native-libs j2v8cmake j2v8jni j2v8cpp j2v8optimize j2v8java | ||
python build.py -t android -a x86_64 --docker --keep-native-libs j2v8cmake j2v8jni j2v8cpp j2v8optimize j2v8java | ||
python build.py -t android -a arm64 --docker --keep-native-libs j2v8cmake j2v8jni j2v8cpp j2v8optimize j2v8java | ||
- name: Release | ||
env: | ||
KEY_ID: ${{ secrets.KEY_ID }} | ||
|
@@ -39,4 +43,4 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
name: j2v8-linux-x86_64 | ||
path: build.out/j2v8_linux_x86_64-6.1.1.jar | ||
path: build.out/j2v8_linux_x86_64-6.2.0.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters