From a98c6165dd7a23585d8ef7bd17c276a4e15694cb Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Wed, 18 Jan 2023 11:21:48 +0100 Subject: [PATCH] Add steps to check that release and nightly build can compile. --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 372c275efc..0a9c1de893 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,3 +31,7 @@ jobs: name: elementx-debug path: | app/build/outputs/apk/debug/app-debug.apk + - name: Compile release sources + run: ./gradlew compileReleaseSources $CI_GRADLE_ARG_PROPERTIES + - name: Compile nighlty sources + run: ./gradlew compileNightlySources $CI_GRADLE_ARG_PROPERTIES