Build with QuickJS #1
This file contains hidden or 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 with QuickJS | |
on: workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Install dependencies | |
run: | | |
cd test-app/build-tools/jsparser | |
npm install | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with QUICKJS | |
run: ./gradlew -Pengine=QUICKJS | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: release | |
path: | | |
./dist_quickjs | |