update configuration to assume n-api #3
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: Generate prebuilds | |
on: | |
push: | |
branches: [main] | |
tags: | |
- "*" | |
env: | |
NODE_VERSION: 18 | |
MODULE_NAME: "" # Update this line with the name of the module as published on npm | |
MODULE_VERSION: ${{ startsWith(github.ref, 'refs/tags/') && github.ref_name || '' }} | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
target: ["android-arm", "android-arm64", "android-x64"] | |
steps: | |
# You can remove this step if you've updated env.MODULE_NAME above! | |
- name: Assert env.MODULE_NAME is set | |
if: ${{ env.MODULE_NAME == '' }} | |
run: echo "env.MODULE_NAME must be set" && exit 1 | |
- name: Assert env.MODULE_VERSION is set | |
if: ${{ env.MODULE_VERSION == '' }} | |
run: echo "env.MODULE_VERSION must be set" && exit 1 | |
- uses: actions/checkout@v4 | |
- name: Setup NDK | |
uses: nttld/setup-ndk@v1 | |
id: setup-ndk | |
with: | |
ndk-version: r24 # https://github.com/android/ndk/wiki/Unsupported-Downloads#r24 | |
add-to-path: false | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Download npm package and unpack | |
run: npm pack ${{ env.MODULE_NAME }}@${{ env.MODULE_VERSION }} | xargs tar -zxvf | |
- name: Install deps for package | |
working-directory: ./package | |
run: npm install | |
- name: Generate prebuild for ${{ matrix.target }} | |
working-directory: ./package | |
env: | |
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }} | |
run: npx --yes [email protected] ${{ matrix.target }} | |
- name: Upload original prebuild artifacts # mostly for debugging purposes | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.target }} | |
path: ./package/prebuilds/${{ matrix.target }} | |
### The below steps are needed for the release job | |
# (OPTIONAL) This is only needed if the module does not use n-api. Labelling the artifact with the node abi version is then necessary for version compatiability reasons | |
# - name: Set NODE_ABI env var | |
# Use the version associated with the runtime that comes with Nodejs Mobile (can see list here: https://github.com/nodejs-mobile/nodejs-mobile/blob/main/doc/abi_version_registry.json) | |
# run: echo "NODE_ABI=108" >> "$GITHUB_ENV" | |
- name: Derive release artifact name | |
id: artifact-name | |
# If you need the node abi version included, add something like node-${{ env.NODE_ABI }} in the string | |
run: echo "NAME=${{ env.MODULE_NAME }}-${{ env.MODULE_VERSION }}-${{ matrix.TARGET }}" >> "$GITHUB_OUTPUT" | |
- name: Prepare release artifact | |
run: tar -czf ${{ steps.artifact-name.outputs.NAME }}.tar.gz --directory=./package/prebuilds/${{ matrix.TARGET }} . | |
- name: Upload release artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ steps.artifact-name.outputs.NAME }} | |
path: ./${{ steps.artifact-name.outputs.NAME }}.tar.gz | |
release: | |
if: ${{ startsWith(github.ref, 'refs/tags') }} | |
needs: build | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
- name: Create GitHub Release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "${{ env.MODULE_NAME }}-${{ env.MODULE_VERSION }}-*/*.tar.gz" | |
artifactErrorsFailBuild: true | |
allowUpdates: true | |
replacesArtifacts: true |