-
Notifications
You must be signed in to change notification settings - Fork 355
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
Elmi Ahmadov
committed
Dec 13, 2019
1 parent
353cc8d
commit c55edb7
Showing
2 changed files
with
26 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -3,6 +3,29 @@ name: Build J2V8 | |
on: [push] | ||
|
||
jobs: | ||
j2v8_macos: | ||
name: Build J2V8 for macOS | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v1 | ||
|
||
- name: Download monolithic libraries and extract to v8.out directory | ||
run: | | ||
curl -O https://download.eclipsesource.com/j2v8/v8/libv8_7.4.288_monolith.zip | ||
mkdir -p v8.out | ||
unzip libv8_7.4.288_monolith.zip -d v8.out | ||
# start j2v8 build | ||
python build.py -t macos -a x64 j2v8cmake j2v8jni j2v8cpp j2v8optimize j2v8java j2v8test | ||
- name: Archive J2V8 macOS x86_64 jar | ||
uses: actions/[email protected] | ||
with: | ||
name: j2v8-macos-x86_64 | ||
path: build.out/j2v8_macos_x86_64-6.0.0.jar | ||
|
||
generate_j2v8_archives: | ||
name: Create J2V8 Linux jar and Android aar archive files | ||
runs-on: ubuntu-latest | ||
|
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