feat: Ada 2.9 #99
Workflow file for this run
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
on: | |
pull_request: | |
env: | |
NPM_TAG: "pr" | |
EMULATOR_NAME: "runtime-emu" | |
NDK_VERSION: r23c | |
ANDROID_API: 29 | |
ANDROID_ABI: x86_64 | |
NDK_ARCH: darwin | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-13 | |
outputs: | |
npm_version: ${{ steps.npm_version_output.outputs.NPM_VERSION }} | |
npm_tag: ${{ steps.npm_version_output.outputs.NPM_TAG }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: "https://registry.npmjs.org" | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: "17" | |
cache: gradle | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v2 | |
- name: Homebrew dependencies | |
run: | | |
brew install wget | |
- name: Setup NDK | |
run: | | |
echo "y" | sdkmanager "cmake;3.6.4111459" | |
wget https://dl.google.com/android/repository/android-ndk-$NDK_VERSION-$NDK_ARCH.zip | |
chmod +x android-ndk-$NDK_VERSION-$NDK_ARCH.zip | |
unzip -q android-ndk-$NDK_VERSION-$NDK_ARCH.zip | |
rm -rf android-ndk-$NDK_VERSION-$NDK_ARCH.zip | |
export ANDROID_NDK_HOME=`pwd`/android-ndk-$NDK_VERSION | |
echo ANDROID_NDK_HOME=${ANDROID_NDK_HOME} >> $GITHUB_ENV | |
echo ANDROID_NDK=${ANDROID_NDK_HOME} >> $GITHUB_ENV | |
echo ${ANDROID_NDK_HOME} >> $GITHUB_PATH | |
- name: Install Dependencies | |
run: | | |
npm install | |
npm install --prefix ./test-app/tools | |
- name: Get Current Version | |
run: | | |
NPM_VERSION=$(node -e "console.log(require('./package.json').version);") | |
echo NPM_VERSION=$NPM_VERSION >> $GITHUB_ENV | |
- name: Bump version for dev release | |
if: ${{ !contains(github.ref, 'refs/tags/') }} | |
run: | | |
NPM_VERSION=$(node ./scripts/get-next-version.js) | |
echo NPM_VERSION=$NPM_VERSION >> $GITHUB_ENV | |
npm version $NPM_VERSION --no-git-tag-version | |
- name: Output NPM Version and tag | |
id: npm_version_output | |
run: | | |
NPM_TAG=$(node ./scripts/get-npm-tag.js) | |
echo NPM_VERSION=$NPM_VERSION >> $GITHUB_OUTPUT | |
echo NPM_TAG=$NPM_TAG >> $GITHUB_OUTPUT | |
- name: Build npm package | |
run: ./gradlew -PgitCommitVersion=${{ github.sha }} -PnoCCache --stacktrace | |
- name: Upload npm package artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: npm-package | |
path: dist/nativescript-android-${{steps.npm_version_output.outputs.NPM_VERSION}}.tgz | |
test: | |
name: Test | |
runs-on: macos-13 | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: "https://registry.npmjs.org" | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: "17" | |
cache: gradle | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v2 | |
- name: Homebrew dependencies | |
run: | | |
brew install wget | |
- name: Setup NDK | |
run: | | |
echo "y" | sdkmanager "cmake;3.6.4111459" | |
wget https://dl.google.com/android/repository/android-ndk-$NDK_VERSION-$NDK_ARCH.zip | |
chmod +x android-ndk-$NDK_VERSION-$NDK_ARCH.zip | |
unzip -q android-ndk-$NDK_VERSION-$NDK_ARCH.zip | |
rm -rf android-ndk-$NDK_VERSION-$NDK_ARCH.zip | |
export ANDROID_NDK_HOME=`pwd`/android-ndk-$NDK_VERSION | |
echo ANDROID_NDK_HOME=${ANDROID_NDK_HOME} >> $GITHUB_ENV | |
echo ANDROID_NDK=${ANDROID_NDK_HOME} >> $GITHUB_ENV | |
echo ${ANDROID_NDK_HOME} >> $GITHUB_PATH | |
- name: Install Dependencies | |
run: | | |
npm install | |
npm install --prefix ./test-app/tools | |
- name: SBG tests | |
run: ./gradlew runSbgTests --stacktrace | |
- name: Run unit tests | |
uses: ReactiveCircus/android-emulator-runner@v2 | |
with: | |
api-level: ${{env.ANDROID_API}} | |
# this is needed on API 30+ | |
#target: google_apis | |
arch: ${{env.ANDROID_ABI}} | |
script: ./gradlew runtestsAndVerifyResults --stacktrace |