🐳 chore: Upgraded Javet to v3.0.4 #105
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
name: Build Jaspiler | |
concurrency: | |
group: build_jaspiler_${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths-ignore: | |
- "**.md" | |
- "**.rst" | |
- "docs/**" | |
push: | |
paths-ignore: | |
- "**.md" | |
- "**.rst" | |
- "docs/**" | |
env: | |
JASPILER_VERSION: 0.1.0 | |
jobs: | |
build_jaspiler_for_linux_and_windows: | |
name: Build Jaspiler for Linux and Windows | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: corretto | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v3 | |
with: | |
gradle-version: 8.5 | |
- name: Setup NPM | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: NPM Install | |
run: | | |
cd scripts/node | |
npm install | |
cd ../../ | |
- name: Build the Artifact | |
run: | | |
gradle build test | |
zip -d build/libs/Jaspiler-${{ env.JASPILER_VERSION }}.jar "*-v8-*.dll" "*-v8-*.so" | |
- name: Upload the Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jaspiler-${{ env.JASPILER_VERSION }} | |
path: build/libs/*.jar | |
build_jaspiler_for_macos: | |
name: Build Jaspiler for MacOS | |
runs-on: macos-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v4 | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: corretto | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v3 | |
with: | |
gradle-version: 8.5 | |
- name: Setup NPM | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: NPM Install | |
run: | | |
cd scripts/node | |
npm install | |
cd ../../ | |
- name: Build the Artifact | |
run: | | |
gradle build test | |
zip -d build/libs/Jaspiler-macos-${{ env.JASPILER_VERSION }}.jar "*-v8-*.dylib" | |
- name: Upload the Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jaspiler-macos-${{ env.JASPILER_VERSION }} | |
path: build/libs/*.jar |