mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
6863a8a637
This is just another step towards green checks on PRs :) There is no way to skip the whole workflow depending on whether it is a PR from a fork or not. The only workaround is to check whether secrets are present or not. So, I've added a step to check if KS_PASS is empty, and set an output depending on that. If it is empty, we just skip the rest of the steps. To avoid the `if` repetition, a separate job can be used and then the whole `qa` job can depend on its outputs. But that would add another "check" in the github UI. Inspired by https://github.com/nextcloud/android/pull/8791#issuecomment-890524333 Signed-off-by: Álvaro Brey <alvaro.brv@gmail.com>
35 lines
1.8 KiB
YAML
35 lines
1.8 KiB
YAML
name: "QA"
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master, stable-* ]
|
|
|
|
jobs:
|
|
qa:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check if secrets are available
|
|
run: echo "::set-output name=ok::${{ secrets.KS_PASS != '' }}"
|
|
id: check-secrets
|
|
- uses: actions/checkout@v2
|
|
if: ${{ steps.check-secrets.outputs.ok == 'true' }}
|
|
- name: set up JDK 1.8
|
|
if: ${{ steps.check-secrets.outputs.ok == 'true' }}
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
- name: Build QA
|
|
if: ${{ steps.check-secrets.outputs.ok == 'true' }}
|
|
env:
|
|
KS_PASS: ${{ secrets.KS_PASS }}
|
|
KEY_PASS: ${{ secrets.KEY_PASS }}
|
|
LOG_USERNAME: ${{ secrets.LOG_USERNAME }}
|
|
LOG_PASSWORD: ${{ secrets.LOG_PASSWORD }}
|
|
run: |
|
|
mkdir -p $HOME/.gradle
|
|
echo "org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" > $HOME/.gradle/gradle.properties
|
|
sed -i "/qa/,/\}/ s/versionCode .*/versionCode ${{github.event.number}} /" build.gradle
|
|
sed -i "/qa/,/\}/ s/versionName .*/versionName \"${{github.event.number}}\"/" build.gradle
|
|
./gradlew assembleQaDebug
|
|
$(find /usr/local/lib/android/sdk/build-tools/*/apksigner | sort | tail -n1) sign --ks-pass pass:$KS_PASS --key-pass pass:$KEY_PASS --ks-key-alias key0 --ks scripts/QA_keystore.jks build/outputs/apk/qa/debug/qa-debug-*.apk
|
|
sudo scripts/uploadArtifact.sh $LOG_USERNAME $LOG_PASSWORD ${{github.event.number}} ${{github.event.number}} ${{ secrets.GITHUB_TOKEN }}
|